fix(logger.js): properly log user activity and api activity separately in node and bundled environments
This commit is contained in:
parent
50f338917c
commit
4a81f0411f
@ -3,22 +3,41 @@ const fs = require('fs');
|
|||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
||||||
class Logger {
|
class Logger {
|
||||||
constructor(options = {}) {
|
constructor(options = {}) {
|
||||||
|
// Dynamically determine the base directory
|
||||||
|
const isPackaged = process.pkg !== undefined;
|
||||||
|
let baseDir;
|
||||||
|
|
||||||
|
if (isPackaged) {
|
||||||
|
// If running as a packaged executable, use the directory where the executable is located
|
||||||
|
baseDir = path.dirname(process.execPath);
|
||||||
|
} else {
|
||||||
|
// In development, use the project root directory
|
||||||
|
baseDir = process.cwd();
|
||||||
|
}
|
||||||
|
|
||||||
this.options = {
|
this.options = {
|
||||||
logToConsole: options.logToConsole !== false,
|
logToConsole: options.logToConsole !== false,
|
||||||
logToFile: options.logToFile || false,
|
logToFile: options.logToFile || false,
|
||||||
logDirectory: options.logDirectory || path.join(__dirname, '..', '..', 'logs'),
|
// Use the determined base directory + logs
|
||||||
|
logDirectory: options.logDirectory || path.join(baseDir, 'logs'),
|
||||||
userActivityLogFile: options.userActivityLogFile || 'user-activity.log',
|
userActivityLogFile: options.userActivityLogFile || 'user-activity.log',
|
||||||
apiLogFile: options.apiLogFile || 'api.log',
|
apiLogFile: options.apiLogFile || 'api.log',
|
||||||
// Log levels: debug, info, warn, error
|
|
||||||
minLevel: options.minLevel || 'info'
|
minLevel: options.minLevel || 'info'
|
||||||
};
|
};
|
||||||
|
|
||||||
// Create log directory if it doesn't exist and logging to file is enabled
|
// Create log directory if it doesn't exist and logging to file is enabled
|
||||||
if (this.options.logToFile) {
|
if (this.options.logToFile) {
|
||||||
|
try {
|
||||||
if (!fs.existsSync(this.options.logDirectory)) {
|
if (!fs.existsSync(this.options.logDirectory)) {
|
||||||
fs.mkdirSync(this.options.logDirectory, { recursive: true });
|
fs.mkdirSync(this.options.logDirectory, { recursive: true });
|
||||||
}
|
}
|
||||||
|
} catch (err) {
|
||||||
|
console.error(`Failed to create log directory: ${err.message}`);
|
||||||
|
// Fall back to logging in the same directory as the executable if directory creation fails
|
||||||
|
this.options.logDirectory = baseDir;
|
||||||
|
console.log(`Falling back to logging in: ${this.options.logDirectory}`);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Log levels and their priorities
|
// Log levels and their priorities
|
||||||
@ -56,11 +75,15 @@ class Logger {
|
|||||||
? path.join(this.options.logDirectory, this.options.userActivityLogFile)
|
? path.join(this.options.logDirectory, this.options.userActivityLogFile)
|
||||||
: path.join(this.options.logDirectory, this.options.apiLogFile);
|
: path.join(this.options.logDirectory, this.options.apiLogFile);
|
||||||
|
|
||||||
fs.appendFile(logFile, content + '\n', (err) => {
|
try {
|
||||||
if (err) {
|
fs.appendFileSync(logFile, content + '\n');
|
||||||
|
} catch (err) {
|
||||||
console.error(`Error writing to log file: ${err.message}`);
|
console.error(`Error writing to log file: ${err.message}`);
|
||||||
|
// Optionally fall back to console logging if file writing fails
|
||||||
|
if (this.options.logToConsole) {
|
||||||
|
console.error(`Failed to write to log file, logging to console instead: ${content}`);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
debug(message, data = {}) {
|
debug(message, data = {}) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user