mirror of
https://github.com/morten-olsen/homelab-operator.git
synced 2026-02-08 01:36:28 +01:00
linting
This commit is contained in:
@@ -1,19 +1,19 @@
|
||||
class LogService {
|
||||
public debug = (message: string, data?: Record<string, unknown>) => {
|
||||
console.debug(message, data);
|
||||
}
|
||||
};
|
||||
|
||||
public info = (message: string, data?: Record<string, unknown>) => {
|
||||
console.info(message, data);
|
||||
}
|
||||
};
|
||||
|
||||
public warn = (message: string, data?: Record<string, unknown>) => {
|
||||
console.warn(message, data);
|
||||
}
|
||||
};
|
||||
|
||||
public error = (message: string, data?: Record<string, unknown>) => {
|
||||
console.error(message, data);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
export { LogService };
|
||||
export { LogService };
|
||||
|
||||
Reference in New Issue
Block a user