124 lines
3.4 KiB
TypeScript
124 lines
3.4 KiB
TypeScript
import * as plugins from './smartlog.plugins';
|
|
|
|
import { LogRouter } from './smartlog.classes.logrouter';
|
|
|
|
export interface ISmartlogContructorOptions {
|
|
logContext: plugins.smartlogInterfaces.ILogContext;
|
|
minimumLogLevel?: plugins.smartlogInterfaces.TLogLevel;
|
|
}
|
|
|
|
export class Smartlog implements plugins.smartlogInterfaces.ILogDestination {
|
|
private logContext: plugins.smartlogInterfaces.ILogContext;
|
|
private minimumLogLevel: plugins.smartlogInterfaces.TLogLevel;
|
|
|
|
private consoleEnabled: boolean;
|
|
|
|
private logRouter = new LogRouter();
|
|
|
|
public addLogDestination(logDestinationArg: plugins.smartlogInterfaces.ILogDestination) {
|
|
this.logRouter.addLogDestination(logDestinationArg);
|
|
}
|
|
|
|
constructor(optionsArg: ISmartlogContructorOptions) {
|
|
this.logContext = optionsArg.logContext;
|
|
this.minimumLogLevel = optionsArg.minimumLogLevel;
|
|
}
|
|
|
|
// ============
|
|
// Logger Setup
|
|
// ============
|
|
|
|
/**
|
|
* enables console logging
|
|
*/
|
|
public enableConsole(optionsArg?: {
|
|
captureAll: boolean;
|
|
}) {
|
|
if (optionsArg && optionsArg.captureAll) {
|
|
const write = process.stdout.write;
|
|
/* import * as fs from 'fs';
|
|
const fileStream = fs.createWriteStream(plugins.path.join(paths.nogitDir, 'output.txt'), {
|
|
flags: 'a+'
|
|
}); */
|
|
process.stdout.write = (...args) => {
|
|
if (!args[0].startsWith('LOG')) {
|
|
this.log('info', args[0]);
|
|
return;
|
|
}
|
|
// fileStream.write(args[0]);
|
|
write.apply(process.stdout, args);
|
|
return true;
|
|
};
|
|
}
|
|
this.consoleEnabled = true;
|
|
}
|
|
|
|
// =============
|
|
// log functions
|
|
// =============
|
|
/**
|
|
* main log method
|
|
* @param logLevelArg - the log level
|
|
* @param logMessageArg - the log message
|
|
* @param logDataArg - any additional log data
|
|
* @param correlationArg - info about corrleations
|
|
*/
|
|
public log(
|
|
logLevelArg: plugins.smartlogInterfaces.TLogLevel,
|
|
logMessageArg: string,
|
|
logDataArg?: any,
|
|
correlationArg: plugins.smartlogInterfaces.ILogCorrelation = {
|
|
id: plugins.isounique.uni(),
|
|
type: 'none'
|
|
}
|
|
) {
|
|
if (this.consoleEnabled) {
|
|
this.safeConsoleLog(
|
|
`${logLevelArg}: ${logMessageArg}`
|
|
);
|
|
}
|
|
const logPackage: plugins.smartlogInterfaces.ILogPackage = {
|
|
timestamp: Date.now(),
|
|
type: 'log',
|
|
context: this.logContext,
|
|
level: logLevelArg,
|
|
correlation: correlationArg,
|
|
message: logMessageArg
|
|
};
|
|
if (logDataArg) {
|
|
logPackage.data = logDataArg;
|
|
}
|
|
this.logRouter.routeLog(logPackage);
|
|
}
|
|
|
|
public increment(
|
|
logLevelArg: plugins.smartlogInterfaces.TLogLevel,
|
|
logMessageArg: string,
|
|
logDataArg?: any,
|
|
correlationArg: plugins.smartlogInterfaces.ILogCorrelation = {
|
|
id: plugins.isounique.uni(),
|
|
type: 'none'
|
|
}
|
|
) {
|
|
if (this.consoleEnabled) {
|
|
this.safeConsoleLog(`INCREMENT: ${logLevelArg}: ${logMessageArg}`);
|
|
}
|
|
this.logRouter.routeLog({
|
|
timestamp: Date.now(),
|
|
type: 'increment',
|
|
context: this.logContext,
|
|
level: logLevelArg,
|
|
message: logMessageArg,
|
|
correlation: correlationArg
|
|
});
|
|
}
|
|
|
|
public handleLog(logPackageArg: plugins.smartlogInterfaces.ILogPackage) {
|
|
this.logRouter.routeLog(logPackageArg);
|
|
}
|
|
|
|
private safeConsoleLog(logLine: string) {
|
|
console.log(`LOG => ${new Date().getHours()}:${new Date().getMinutes()}:${new Date().getSeconds()} => ${logLine}`);
|
|
}
|
|
}
|