You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rewrite logger to have these features:
create new log per day
use prefix for log name if special header is present in request
create log viewer
log viewer must only be available to logged in admins or developers (may need to add developers to ACL)
log viewer will also use special header to find correct log file.
initialize new log file in index.php or in !inc.php by setting LOG_PREFIX constant, LOG_FILE constant
these constants may be used in Log.php
Update all print_r statements in logger with calls to
_j() or j() wich will do json_encode
_j() will do nothing if log level is NOT debug. This will save all the json_encode calls!
in log viewer add js to open selected json string in new window parsed in pretty formatted.
The text was updated successfully, but these errors were encountered:
Rewrite logger to have these features:
create new log per day
use prefix for log name if special header is present in request
create log viewer
log viewer must only be available to logged in admins or developers (may need to add developers to ACL)
log viewer will also use special header to find correct log file.
initialize new log file in index.php or in !inc.php by setting LOG_PREFIX constant, LOG_FILE constant
these constants may be used in Log.php
Update all print_r statements in logger with calls to
_j() or j() wich will do json_encode
_j() will do nothing if log level is NOT debug. This will save all the json_encode calls!
in log viewer add js to open selected json string in new window parsed in pretty formatted.
The text was updated successfully, but these errors were encountered: