[mirotalksfu] - add logs json format, update dep

هذا الالتزام موجود في:
Miroslav Pejic
2025-07-13 18:43:12 +02:00
الأصل be70fd683c
التزام dc4e2b14e2
8 ملفات معدلة مع 110 إضافات و63 حذوفات

عرض الملف

@@ -90,11 +90,15 @@ module.exports = {
* - timeZone: IANA timezone (e.g., 'Europe/Rome')
* - debug: Enable debug logging in non-production
* - colors: Colorized console output
* - json: Log output in JSON format
* - json_pretty: Pretty-print JSON logs
*/
console: {
timeZone: 'UTC',
debug: ENVIRONMENT !== 'production',
colors: true,
json: process.env.LOGS_JSON === 'true',
json_pretty: process.env.LOGS_JSON_PRETTY === 'true',
colors: process.env.LOGS_JSON === 'true' ? false : true,
},
/**