Dimensione massima log
All checks were successful
Compila e pubblica sul registro integrato / Build-Docker-Image (push) Successful in 8m22s

This commit is contained in:
La Programmatrice Verde
2026-01-04 15:35:25 +01:00
parent a9b21b948a
commit 69f90e7a34
4 changed files with 72 additions and 12 deletions

View File

@@ -23,6 +23,13 @@ module.exports = {
dayjs.extend(utc);
dayjs.extend(timezone);
dayjs.tz.setDefault(dayjs.tz.guess());
return dayjs().format("DD/MM/YYYY HH:mm:ss.sss");
return dayjs().format("DD/MM/YYYY HH:mm:ss");
},
maxLogSize: 10,
setMaxLogSize(maxLogSize) {
this.maxLogSize = maxLogSize;
},
getMaxLogSize() {
return this.maxLogSize;
},
};