PluginProbe ʕ •ᴥ•ʔ
JetBackup – Backup, Restore & Migrate / 3.1.22.3
JetBackup – Backup, Restore & Migrate v3.1.22.3
3.1.22.3 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.8.1 1.4.9 1.5.0 1.5.1 1.5.1.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6.0 1.6.10 1.6.11 1.6.12 1.6.13 1.6.15 1.6.5.1 1.6.8.8 1.6.9 1.6.9.1 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7.5 2.0.8.7 2.0.9.11 2.0.9.14 2.0.9.15 2.0.9.6 2.0.9.7 2.0.9.9 3.1.10.7 3.1.11.1 3.1.12.3 3.1.13.4 3.1.14.17 3.1.15.4 3.1.16.1 3.1.17.5 3.1.18.10 3.1.18.8 3.1.18.9 3.1.19.8 3.1.20.3 3.1.21.3 3.1.7.9 3.1.9.2 trunk 1.1.90 1.1.91 1.2.0 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2
backup / public / views / settings / logging.htm
backup / public / views / settings Last commit date
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>