Where are the log files stored in Moodle?

I need to find where the registration data is stored in Moodle. The Moodle database has a table named "log" where log data is stored. However, I can get Moodle reports showing registration data which is definitely NOT stored in this table. I am using Moodle version 2.7.8.

+3


source to share


1 answer


In the version of Moodle I am using (2.7.8), you have three options for registering your data (called magazine stores):

  • Standard magazine . This is the default feature. All log data will be saved in the "logstore_standard_log" database table. You can see here, for example, when a user has viewed a certain course, when a user is logged in or logged out, etc.
  • Legacy log : This is the log structure used in earlier versions of Moodle. All log data has been saved in the Log database table.
  • External Database : You have the ability to select and configure an external database to store log data. Database connection, name and other parameters can be configured in Site Administration → Plugins → Registration → Manage Log Repositories → External Database Log Settings.


Current registration information can be found at: https://docs.moodle.org/dev/Logging_2

+7


source







All Articles