Upload folder via GUI - src

This commit is contained in:
Git Manager GUI
2026-05-07 22:16:10 +02:00
parent 60a685fdda
commit 32eeba859e
2 changed files with 45 additions and 1 deletions

View File

@@ -13,7 +13,7 @@ const ppath = require('path');
const LOG_LEVELS = { DEBUG: 0, INFO: 1, WARN: 2, ERROR: 3 };
let currentLogLevel = process.env.NODE_ENV === 'production' ? LOG_LEVELS.INFO : LOG_LEVELS.DEBUG;
let logQueue = [];
const MAX_LOG_BUFFER = 100;
const MAX_LOG_BUFFER = 2000;
function formatLog(level, context, message, details = null) {
const timestamp = new Date().toISOString();