chore: npm run format
This commit is contained in:
parent
2d0884b04d
commit
bbfe94cfe2
1 changed files with 4 additions and 1 deletions
|
|
@ -82,7 +82,10 @@ export class QwenLogger {
|
||||||
return undefined;
|
return undefined;
|
||||||
if (!QwenLogger.instance) {
|
if (!QwenLogger.instance) {
|
||||||
QwenLogger.instance = new QwenLogger(config);
|
QwenLogger.instance = new QwenLogger(config);
|
||||||
process.on('exit', QwenLogger.instance.shutdown.bind(QwenLogger.instance));
|
process.on(
|
||||||
|
'exit',
|
||||||
|
QwenLogger.instance.shutdown.bind(QwenLogger.instance),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return QwenLogger.instance;
|
return QwenLogger.instance;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue