This website uses Cookies to provide you with the best possible service. Please see our Privacy Policy for more information. Click the check box below to accept cookies. Then confirm with a click on "Save".  
Status: 2022-08-08

Logging

default path for logfiles

/application/log/

write into default logfile

\MVC\Log::write('My Message');
  • writes to: /application/log/default.log

write into another logfile

\MVC\Log::write('My Message', 'specialLogfile.log');

All Log Entries show:

  • Date and Time
  • IP Address
  • a uniqueID for the current Request
  • the Session ID
  • an increasing Counter for each log entry for the time Request is running
  • the file and lineNr from where the log was called
  • The Log Message

Extra LogInfos for Events

  • BIND with the Eventname and where the Event was called from.
  • RUN with the Eventname and where the Event was called from. No further logic is bonded to that Event actually
  • RUN+ with the Eventname and where the Event was called from. In this case some logic was bonded to that event (via "BIND") and all bonded logics are listed in detail