automation.htm
10 months ago
general.htm
4 months ago
integrations.htm
1 year ago
logging.htm
1 year ago
maintenance.htm
1 year ago
notifications.htm
1 year ago
performance.htm
1 year ago
restore.htm
1 year ago
security.htm
4 days ago
updates.htm
1 year ago
logging.htm
34 lines
| 1 | <div class="pd-20 settings"> |
| 2 | |
| 3 | <div class="form-group row"> |
| 4 | <p class="pd-6">{{ lang.t('Please note that enabling these options may lead to a slight decrease in system performance and increased use of disk space due to the detailed nature of the logs generated.') }}</p> |
| 5 | </div> |
| 6 | |
| 7 | <div class="form-group row"> |
| 8 | <label for="DEBUG" class="col-sm-3 col-form-label jb-label">{{ lang.t('Debug Enabled') }}</label> |
| 9 | <div class="col-sm-9"> |
| 10 | <div class="pd-3 switch-main"> |
| 11 | <label class="switch"> |
| 12 | <input id="DEBUG" |
| 13 | type="checkbox" |
| 14 | ng-model="saveData.DEBUG" |
| 15 | ng-true-value=1 |
| 16 | ng-false-value=0> |
| 17 | <span class="slider round"></span> |
| 18 | </label> |
| 19 | <p class="pd-3">{{ lang.t('Toggle to enable logging of detailed cron events, helping diagnose timing or execution issues with system tasks.') }}</p> |
| 20 | </div> |
| 21 | </div> |
| 22 | </div> |
| 23 | |
| 24 | <div class="form-group row"> |
| 25 | <label for="alerts_ttl" class="col-sm-3 col-form-label jb-label">{{ lang.t('Log Rotate Days') }}</label> |
| 26 | <div class="col-sm-9"> |
| 27 | <div class="pd-3 jobs"> |
| 28 | <input type="number" max="30" id="alerts_ttl" class="form-control" name="LOG_ROTATE" ng-model="saveData.LOG_ROTATE"> |
| 29 | <p class="pd-3">{{ lang.t('Specify the number of days to retain log files. Older logs beyond this duration will be automatically deleted. Set this value to 0 to keep logs indefinitely.') }}</p> |
| 30 | </div> |
| 31 | </div> |
| 32 | </div> |
| 33 | |
| 34 | </div> |