feat: first draft of everything working single monitor with just mouse commands

This commit is contained in:
Lucas Oskorep
2025-04-18 01:57:29 -04:00
parent 185a8e233c
commit e1e240924a
12 changed files with 545 additions and 376 deletions

30
src/utils/logger.ts Normal file
View File

@@ -0,0 +1,30 @@
export class Logger {
static fatal(...args: any[]) {
console.log(`[Aerospike] [FATAL]`, ...args);
}
static error(...args: any[]) {
console.log(`[Aerospike] [ERROR]`, ...args);
}
static warn(...args: any[]) {
console.log(`[Aerospike] [WARN]`, ...args);
}
static info(...args: any[]) {
console.log(`[Aerospike] [INFO]`, ...args);
}
static debug(...args: any[]) {
console.log(`[Aerospike] [DEBUG]`, ...args);
}
static trace(...args: any[]) {
console.log(`[Aerospike] [TRACE]`, ...args);
}
static log(...args: any[]) {
console.log(`[Aerospike] [LOG]`, ...args);
}
}