FIX: #0 Update default syslog path in SQL seed data to local log directory
All checks were successful
Deploy Beta (NATIVE) / deploy (push) Successful in 48s

This commit is contained in:
vickytechkey 2026-08-19 22:16:27 +05:30
parent faf205b004
commit 22d8b13ea0

View file

@ -40,7 +40,7 @@ insert into llx_const (name, value, type, note, visible, entity) values ('MAIN_F
-- Hidden and common to all entities
insert into llx_const (name, value, type, note, visible, entity) values ('SYSLOG_HANDLERS','["mod_syslog_file"]','chaine','Which logger to use',0,0);
insert into llx_const (name, value, type, note, visible, entity) values ('SYSLOG_FILE','DOL_DATA_ROOT/dolibarr.log','chaine','Directory where to write log file',0,0);
insert into llx_const (name, value, type, note, visible, entity) values ('SYSLOG_FILE','/home/ubuntu/logs/dolibarrbeta/dolibarr.log','chaine','Directory where to write log file',0,0);
insert into llx_const (name, value, type, note, visible, entity) values ('SYSLOG_LEVEL','7','chaine','Level of debug info to show',0,0);
insert into llx_const (name, value, type, note, visible, entity) values ('MAILING_LIMIT_SENDBYWEB','25','chaine','Number of targets to defined packet size when sending mass email',0,0);