mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-02-04 05:50:50 +00:00
Removes outdated prompt files
Removes the `Chat Prompt.txt`, `VSCode Agent/Prompt.txt`, `Warp.dev/Prompt.txt`, and `v0 Prompts and Tools/Prompt.txt` files. These files likely contain outdated prompts or configurations that are no longer needed in the current project. Removing them helps to clean up the codebase and prevent potential confusion or conflicts.
This commit is contained in:
71
Nowhere_AI_Agent/backend/src/utils/logger.ts
Normal file
71
Nowhere_AI_Agent/backend/src/utils/logger.ts
Normal file
@@ -0,0 +1,71 @@
|
||||
import winston from 'winston';
|
||||
import path from 'path';
|
||||
|
||||
export class Logger {
|
||||
private logger: winston.Logger;
|
||||
|
||||
constructor(service: string) {
|
||||
this.logger = winston.createLogger({
|
||||
level: process.env.LOG_LEVEL || 'info',
|
||||
format: winston.format.combine(
|
||||
winston.format.timestamp(),
|
||||
winston.format.errors({ stack: true }),
|
||||
winston.format.json()
|
||||
),
|
||||
defaultMeta: { service },
|
||||
transports: [
|
||||
// Console transport
|
||||
new winston.transports.Console({
|
||||
format: winston.format.combine(
|
||||
winston.format.colorize(),
|
||||
winston.format.simple()
|
||||
)
|
||||
}),
|
||||
// File transport for errors
|
||||
new winston.transports.File({
|
||||
filename: path.join('logs', 'error.log'),
|
||||
level: 'error',
|
||||
maxsize: 5242880, // 5MB
|
||||
maxFiles: 5
|
||||
}),
|
||||
// File transport for all logs
|
||||
new winston.transports.File({
|
||||
filename: path.join('logs', 'combined.log'),
|
||||
maxsize: 5242880, // 5MB
|
||||
maxFiles: 5
|
||||
})
|
||||
]
|
||||
});
|
||||
|
||||
// Handle uncaught exceptions
|
||||
this.logger.exceptions.handle(
|
||||
new winston.transports.File({
|
||||
filename: path.join('logs', 'exceptions.log')
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
info(message: string, meta?: any) {
|
||||
this.logger.info(message, meta);
|
||||
}
|
||||
|
||||
error(message: string, meta?: any) {
|
||||
this.logger.error(message, meta);
|
||||
}
|
||||
|
||||
warn(message: string, meta?: any) {
|
||||
this.logger.warn(message, meta);
|
||||
}
|
||||
|
||||
debug(message: string, meta?: any) {
|
||||
this.logger.debug(message, meta);
|
||||
}
|
||||
|
||||
verbose(message: string, meta?: any) {
|
||||
this.logger.verbose(message, meta);
|
||||
}
|
||||
|
||||
silly(message: string, meta?: any) {
|
||||
this.logger.silly(message, meta);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user