Index: branches/5.2.x/core/units/logs/system_logs/system_logs_config.php =================================================================== diff -u -N -r16715 -r16754 --- branches/5.2.x/core/units/logs/system_logs/system_logs_config.php (.../system_logs_config.php) (revision 16715) +++ branches/5.2.x/core/units/logs/system_logs/system_logs_config.php (.../system_logs_config.php) (revision 16754) @@ -1,6 +1,6 @@ Array ( 'system_log_notifications' => Array ('EventName' => 'OnSendNotifications', 'RunSchedule' => '0 * * * *'), 'rotate_system_logs' => Array ('EventName' => 'OnRotate', 'RunSchedule' => '0 0 * * *'), + 'rotate_system_log_code_fragments' => Array ('EventName' => 'OnRotateCodeFragmentsScheduledTask', 'RunSchedule' => '0 0 * * 0'), ), 'IDField' => 'LogId', @@ -156,6 +157,13 @@ 'LogBacktrace' => Array ('type' => 'string', 'default' => NULL), 'LogSourceFilename' => Array ('type' => 'string', 'max_len' => 255, 'not_null' => 1, 'default' => ''), 'LogSourceFileLine' => Array ('type' => 'int', 'default' => NULL), + 'LogCodeFragment' => Array ('type' => 'string', 'default' => NULL), + 'LogCodeFragmentsRotated' => Array ( + 'type' => 'int', + 'formatter' => 'kOptionsFormatter', + 'options' => Array (1 => 'la_Yes', 0 => 'la_No'), 'use_phrases' => 1, + 'not_null' => 1, 'default' => 0, + ), 'LogProcessId' => Array ('type' => 'int', 'default' => NULL), 'LogMemoryUsed' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0), 'LogUserData' => Array ('type' => 'string', 'not_null' => 1, 'default' => ''),