Compare commits
32 Commits
Author | SHA1 | Date | |
---|---|---|---|
89429ac679 | |||
9f81cdfb8a | |||
ab9a7891a7 | |||
58358dd479 | |||
fc13271878 | |||
7cd739ff23 | |||
7ec6579cc3 | |||
0c6240ae60 | |||
5d9fb7c25a | |||
6ee63d1e96 | |||
e648a787e5 | |||
96bc87ecbd | |||
de81a174f8 | |||
027216914d | |||
34cc6cbed5 | |||
0bcca99349 | |||
dc72beaf61 | |||
3b706a3b54 | |||
acde7f2204 | |||
890d592072 | |||
31d8aa84ec | |||
3050a63323 | |||
9e294ee357 | |||
ba19654a5e | |||
0ac464875a | |||
fa074facbb | |||
ac4d466ab4 | |||
a0aa3c1122 | |||
5dff4961fb | |||
3a98c2e7d9 | |||
39d08ef53a | |||
74e6bc7a3c |
19
.gitignore
vendored
19
.gitignore
vendored
@ -1,5 +1,22 @@
|
|||||||
.nogit/
|
.nogit/
|
||||||
node_modules/
|
|
||||||
|
# artifacts
|
||||||
coverage/
|
coverage/
|
||||||
public/
|
public/
|
||||||
pages/
|
pages/
|
||||||
|
|
||||||
|
# installs
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# caches
|
||||||
|
.yarn/
|
||||||
|
.cache/
|
||||||
|
.rpt2_cache
|
||||||
|
|
||||||
|
# builds
|
||||||
|
dist/
|
||||||
|
dist_web/
|
||||||
|
dist_serve/
|
||||||
|
dist_ts_web/
|
||||||
|
|
||||||
|
# custom
|
@ -1,5 +1,5 @@
|
|||||||
# gitzone standard
|
# gitzone ci_default
|
||||||
image: hosttoday/ht-docker-node:npmci
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
paths:
|
paths:
|
||||||
@ -37,32 +37,8 @@ snyk:
|
|||||||
# ====================
|
# ====================
|
||||||
# test stage
|
# test stage
|
||||||
# ====================
|
# ====================
|
||||||
testLEGACY:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- npmci npm prepare
|
|
||||||
- npmci node install legacy
|
|
||||||
- npmci npm install
|
|
||||||
- npmci npm test
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
allow_failure: true
|
|
||||||
|
|
||||||
testLTS:
|
testStable:
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- npmci npm prepare
|
|
||||||
- npmci node install lts
|
|
||||||
- npmci npm install
|
|
||||||
- npmci npm test
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
|
|
||||||
testSTABLE:
|
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- npmci npm prepare
|
- npmci npm prepare
|
||||||
@ -72,6 +48,18 @@ testSTABLE:
|
|||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
- priv
|
||||||
|
|
||||||
|
testBuild:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci node install stable
|
||||||
|
- npmci npm install
|
||||||
|
- npmci command npm run build
|
||||||
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
- notpriv
|
- notpriv
|
||||||
|
|
||||||
release:
|
release:
|
||||||
@ -90,19 +78,12 @@ release:
|
|||||||
# ====================
|
# ====================
|
||||||
codequality:
|
codequality:
|
||||||
stage: metadata
|
stage: metadata
|
||||||
image: docker:stable
|
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
services:
|
|
||||||
- docker:stable-dind
|
|
||||||
script:
|
script:
|
||||||
- export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
|
- npmci command npm install -g tslint typescript
|
||||||
- docker run
|
- npmci npm prepare
|
||||||
--env SOURCE_CODE="$PWD"
|
- npmci npm install
|
||||||
--volume "$PWD":/code
|
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
|
||||||
--volume /var/run/docker.sock:/var/run/docker.sock
|
|
||||||
"registry.gitlab.com/gitlab-org/security-products/codequality:$SP_VERSION" /code
|
|
||||||
artifacts:
|
|
||||||
paths: [codeclimate.json]
|
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
- priv
|
- priv
|
||||||
@ -118,13 +99,13 @@ trigger:
|
|||||||
- notpriv
|
- notpriv
|
||||||
|
|
||||||
pages:
|
pages:
|
||||||
image: hosttoday/ht-docker-node:npmci
|
|
||||||
stage: metadata
|
stage: metadata
|
||||||
script:
|
script:
|
||||||
- npmci command npm install -g typedoc typescript
|
- npmci node install lts
|
||||||
|
- npmci command npm install -g @gitzone/tsdoc
|
||||||
- npmci npm prepare
|
- npmci npm prepare
|
||||||
- npmci npm install
|
- npmci npm install
|
||||||
- npmci command typedoc --module "commonjs" --target "ES2016" --out public/ ts/
|
- npmci command tsdoc
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
- notpriv
|
||||||
@ -135,13 +116,3 @@ pages:
|
|||||||
paths:
|
paths:
|
||||||
- public
|
- public
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
|
|
||||||
windowsCompatibility:
|
|
||||||
image: stefanscherer/node-windows:10-build-tools
|
|
||||||
stage: metadata
|
|
||||||
script:
|
|
||||||
- npm install & npm test
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- windows
|
|
||||||
allow_failure: true
|
|
||||||
|
19
license
Normal file
19
license
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
Copyright (c) 2018 Lossless GmbH (hello@lossless.com)
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
@ -1,4 +1,15 @@
|
|||||||
{
|
{
|
||||||
|
"gitzone": {
|
||||||
|
"module": {
|
||||||
|
"githost": "gitlab.com",
|
||||||
|
"gitscope": "pushrocks",
|
||||||
|
"gitrepo": "smartlog",
|
||||||
|
"shortDescription": "minimalistic distributed and extensible logging tool",
|
||||||
|
"npmPackagename": "@pushrocks/smartlog",
|
||||||
|
"license": "MIT",
|
||||||
|
"projectDomain": "push.rocks"
|
||||||
|
}
|
||||||
|
},
|
||||||
"npmci": {
|
"npmci": {
|
||||||
"npmGlobalTools": [],
|
"npmGlobalTools": [],
|
||||||
"npmAccessLevel": "public"
|
"npmAccessLevel": "public"
|
||||||
|
4694
package-lock.json
generated
4694
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
44
package.json
44
package.json
@ -1,27 +1,47 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartlog",
|
"name": "@pushrocks/smartlog",
|
||||||
"version": "2.0.7",
|
"version": "2.0.23",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "winston based logger for large scale projects",
|
"description": "minimalistic distributed and extensible logging tool",
|
||||||
|
"keywords": [
|
||||||
|
"logging",
|
||||||
|
"centralized logging",
|
||||||
|
"json logging",
|
||||||
|
"scalyr",
|
||||||
|
"elasticsearch",
|
||||||
|
"logdna"
|
||||||
|
],
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"typings": "dist/index.d.ts",
|
"typings": "dist/index.d.ts",
|
||||||
"author": "Lossless GmbH",
|
"author": "Lossless GmbH",
|
||||||
"license": "UNLICENSED",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(tstest test/)",
|
"test": "(tstest test/)",
|
||||||
"build": "(tsbuild)",
|
"build": "(tsbuild)",
|
||||||
"format": "(gitzone format)"
|
"format": "(gitzone format)"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gitzone/tsbuild": "^2.0.22",
|
"@gitzone/tsbuild": "^2.1.24",
|
||||||
"@gitzone/tsrun": "^1.1.13",
|
"@gitzone/tsrun": "^1.2.12",
|
||||||
"@gitzone/tstest": "^1.0.15",
|
"@gitzone/tstest": "^1.0.33",
|
||||||
"@pushrocks/tapbundle": "^3.0.7",
|
"@pushrocks/tapbundle": "^3.2.1",
|
||||||
"@types/node": "^10.12.2",
|
"@types/node": "^14.0.11",
|
||||||
"tslint": "^5.11.0",
|
"tslint": "^6.1.2",
|
||||||
"tslint-config-prettier": "^1.15.0"
|
"tslint-config-prettier": "^1.18.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@pushrocks/smartlog-interfaces": "^2.0.1"
|
"@pushrocks/isounique": "^1.0.4",
|
||||||
}
|
"@pushrocks/smartlog-interfaces": "^2.0.15"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"ts/**/*",
|
||||||
|
"ts_web/**/*",
|
||||||
|
"dist/**/*",
|
||||||
|
"dist_web/**/*",
|
||||||
|
"dist_ts_web/**/*",
|
||||||
|
"assets/**/*",
|
||||||
|
"cli.js",
|
||||||
|
"npmextra.json",
|
||||||
|
"readme.md"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
89
readme.md
89
readme.md
@ -1,34 +1,77 @@
|
|||||||
# smartlog
|
# @pushrocks/smartlog
|
||||||
|
minimalistic distributed and extensible logging tool
|
||||||
|
|
||||||
winston based logger for large scale projects
|
## Availabililty and Links
|
||||||
|
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartlog)
|
||||||
## Availabililty
|
* [gitlab.com (source)](https://gitlab.com/pushrocks/smartlog)
|
||||||
|
* [github.com (source mirror)](https://github.com/pushrocks/smartlog)
|
||||||
[](https://www.npmjs.com/package/smartlog)
|
* [docs (typedoc)](https://pushrocks.gitlab.io/smartlog/)
|
||||||
[](https://GitLab.com/pushrocks/smartlog)
|
|
||||||
[](https://github.com/pushrocks/smartlog)
|
|
||||||
[](https://pushrocks.gitlab.io/smartlog/)
|
|
||||||
|
|
||||||
## Status for master
|
## Status for master
|
||||||
|
[](https://gitlab.com/pushrocks/smartlog/commits/master)
|
||||||
[](https://GitLab.com/pushrocks/smartlog/commits/master)
|
[](https://gitlab.com/pushrocks/smartlog/commits/master)
|
||||||
[](https://GitLab.com/pushrocks/smartlog/commits/master)
|
[](https://www.npmjs.com/package/@pushrocks/smartlog)
|
||||||
[](https://www.npmjs.com/package/smartlog)
|
[](https://snyk.io/test/npm/@pushrocks/smartlog)
|
||||||
[](https://david-dm.org/pushrocks/smartlog)
|
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
[](https://www.bithound.io/github/pushrocks/smartlog/master/dependencies/npm)
|
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
[](https://www.bithound.io/github/pushrocks/smartlog)
|
[](https://prettier.io/)
|
||||||
[](https://snyk.io/test/npm/smartlog)
|
|
||||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
||||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
||||||
[](http://standardjs.com/)
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
Use TypeScript for best in class instellisense.
|
Use TypeScript for best in class instellisense.
|
||||||
|
|
||||||
For further information read the linked docs at the top of this README.
|
smartlog id s minimal logging package that provides a consistent experience across the complete logging stack. Smartlog allows you to create a logger instance like this:
|
||||||
|
|
||||||
|
```ts
|
||||||
|
import { Smartlog } from '@pushrocks/smartlog';
|
||||||
|
const logger = new Smartlog({
|
||||||
|
{
|
||||||
|
company: 'My awesome company',
|
||||||
|
companyunit: 'my awesome cloud team',
|
||||||
|
containerName: 'awesome-container',
|
||||||
|
environment: 'kubernetes-production',
|
||||||
|
runtime: 'node',
|
||||||
|
zone: 'zone x'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
logger.log('silly', `a silly statement`); // log levels are shown to you by the IDE
|
||||||
|
```
|
||||||
|
|
||||||
|
There is also a default logger available that you can use:
|
||||||
|
|
||||||
|
```ts
|
||||||
|
import { Smartlog, defaultLogger } from '@pushrocks/smartlog';
|
||||||
|
|
||||||
|
export class MyAwesomeClass {
|
||||||
|
constructor(public logger: Smartlog = defaultLogger) {
|
||||||
|
// what happens here that a instance of this class will have instance.logger available
|
||||||
|
// if you set a custom logger, than that will be used, if not the default logger.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Destinations
|
||||||
|
|
||||||
|
smartlog supports different kinds of destinations.
|
||||||
|
|
||||||
|
The following destinations are available:
|
||||||
|
|
||||||
|
- [@pushrocks/smartlog-destination-local](https://www.npmjs.com/package/@pushrocks/smartlog-destination-local) - outputs logs to the local console in a colorful, nice to read way.
|
||||||
|
- [@pushrocks/smartlog-destination-devtools](https://www.npmjs.com/package/@pushrocks/smartlog-destination-devtools) - outputs logs into the browser console in a colorful, nice to read way.
|
||||||
|
- [@pushrocks/smartlog-destination-receiver](https://www.npmjs.com/package/@pushrocks/smartlog-destination-receiver) - sends logs to a smartlog receiver (more about that below)
|
||||||
|
- [@mojoio/scalyr](https://www.npmjs.com/package/@pushrocks/smartlog-destination-receiver) - an scalyr API package that comes with a smartlog log destination included
|
||||||
|
- [@mojoio/elasticsearch](https://www.npmjs.com/package/@mojoio/elasticsearch) - an elasticsearch API package that comes with a smartlog destination included
|
||||||
|
|
||||||
|
### Adding a log destination
|
||||||
|
|
||||||
|
```
|
||||||
|
// TBD
|
||||||
|
```
|
||||||
|
|
||||||
|
For further information read the linked docs at the top of this readme.
|
||||||
|
|
||||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||||
> | By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
||||||
|
|
||||||
[](https://push.rocks)
|
[](https://maintainedby.lossless.com)
|
||||||
|
@ -9,7 +9,12 @@ tap.test('should produce instance of Smartlog', async () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
tap.test('should enable console logging', async () => {
|
tap.test('should enable console logging', async () => {
|
||||||
defaultLogger.enableConsole();
|
defaultLogger.enableConsole({
|
||||||
|
captureAll: true
|
||||||
|
});
|
||||||
|
console.log('this is a normal log that should be captured');
|
||||||
|
console.log(new Error('hi there'));
|
||||||
|
defaultLogger.log('info', 'this should only be printed once');
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('should be able to log things', async () => {
|
tap.test('should be able to log things', async () => {
|
||||||
|
@ -11,4 +11,6 @@ const defaultLogger: Smartlog = new Smartlog({
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
defaultLogger.enableConsole();
|
||||||
|
|
||||||
export { Smartlog, defaultLogger };
|
export { Smartlog, defaultLogger };
|
||||||
|
@ -1,24 +1,21 @@
|
|||||||
import * as plugins from './smartlog.plugins';
|
import * as plugins from './smartlog.plugins';
|
||||||
|
|
||||||
// interfaces
|
|
||||||
import { TLogType, TEnvironment, ILogContext, TLogLevel, TRuntime, ILogDestination } from '@pushrocks/smartlog-interfaces';
|
|
||||||
|
|
||||||
import { LogRouter } from './smartlog.classes.logrouter';
|
import { LogRouter } from './smartlog.classes.logrouter';
|
||||||
|
|
||||||
export interface ISmartlogContructorOptions {
|
export interface ISmartlogContructorOptions {
|
||||||
logContext: ILogContext;
|
logContext: plugins.smartlogInterfaces.ILogContext;
|
||||||
minimumLogLevel?: TLogLevel;
|
minimumLogLevel?: plugins.smartlogInterfaces.TLogLevel;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Smartlog {
|
export class Smartlog implements plugins.smartlogInterfaces.ILogDestination {
|
||||||
private logContext: ILogContext;
|
private logContext: plugins.smartlogInterfaces.ILogContext;
|
||||||
private minimumLogLevel: TLogLevel;
|
private minimumLogLevel: plugins.smartlogInterfaces.TLogLevel;
|
||||||
|
|
||||||
private consoleEnabled: boolean;
|
private consoleEnabled: boolean;
|
||||||
|
|
||||||
private logRouter = new LogRouter();
|
private logRouter = new LogRouter();
|
||||||
|
|
||||||
public addLogDestination (logDestinationArg: ILogDestination) {
|
public addLogDestination(logDestinationArg: plugins.smartlogInterfaces.ILogDestination) {
|
||||||
this.logRouter.addLogDestination(logDestinationArg);
|
this.logRouter.addLogDestination(logDestinationArg);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -27,7 +24,6 @@ export class Smartlog {
|
|||||||
this.minimumLogLevel = optionsArg.minimumLogLevel;
|
this.minimumLogLevel = optionsArg.minimumLogLevel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ============
|
// ============
|
||||||
// Logger Setup
|
// Logger Setup
|
||||||
// ============
|
// ============
|
||||||
@ -35,7 +31,25 @@ export class Smartlog {
|
|||||||
/**
|
/**
|
||||||
* enables console logging
|
* enables console logging
|
||||||
*/
|
*/
|
||||||
enableConsole() {
|
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;
|
this.consoleEnabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -43,31 +57,67 @@ export class Smartlog {
|
|||||||
// log functions
|
// log functions
|
||||||
// =============
|
// =============
|
||||||
/**
|
/**
|
||||||
* log stuff
|
* main log method
|
||||||
* @param logLevelArg
|
* @param logLevelArg - the log level
|
||||||
* @param logMessageArg
|
* @param logMessageArg - the log message
|
||||||
|
* @param logDataArg - any additional log data
|
||||||
|
* @param correlationArg - info about corrleations
|
||||||
*/
|
*/
|
||||||
public log(logLevelArg: TLogLevel, logMessageArg: string) {
|
public log(
|
||||||
if (this.consoleEnabled) {
|
logLevelArg: plugins.smartlogInterfaces.TLogLevel,
|
||||||
console.log(`LOG: ${logLevelArg}: ${logMessageArg}`);
|
logMessageArg: string,
|
||||||
|
logDataArg?: any,
|
||||||
|
correlationArg: plugins.smartlogInterfaces.ILogCorrelation = {
|
||||||
|
id: plugins.isounique.uni(),
|
||||||
|
type: 'none'
|
||||||
}
|
}
|
||||||
this.logRouter.routeLog({
|
) {
|
||||||
|
if (this.consoleEnabled) {
|
||||||
|
this.safeConsoleLog(
|
||||||
|
`${logLevelArg}: ${logMessageArg}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
const logPackage: plugins.smartlogInterfaces.ILogPackage = {
|
||||||
|
timestamp: Date.now(),
|
||||||
type: 'log',
|
type: 'log',
|
||||||
context: this.logContext,
|
context: this.logContext,
|
||||||
level: logLevelArg,
|
level: logLevelArg,
|
||||||
|
correlation: correlationArg,
|
||||||
message: logMessageArg
|
message: logMessageArg
|
||||||
});
|
};
|
||||||
|
if (logDataArg) {
|
||||||
|
logPackage.data = logDataArg;
|
||||||
|
}
|
||||||
|
this.logRouter.routeLog(logPackage);
|
||||||
}
|
}
|
||||||
|
|
||||||
public increment(logLevelArg: TLogLevel, logMessageArg) {
|
public increment(
|
||||||
|
logLevelArg: plugins.smartlogInterfaces.TLogLevel,
|
||||||
|
logMessageArg: string,
|
||||||
|
logDataArg?: any,
|
||||||
|
correlationArg: plugins.smartlogInterfaces.ILogCorrelation = {
|
||||||
|
id: plugins.isounique.uni(),
|
||||||
|
type: 'none'
|
||||||
|
}
|
||||||
|
) {
|
||||||
if (this.consoleEnabled) {
|
if (this.consoleEnabled) {
|
||||||
console.log(`INCREMENT: ${logLevelArg}: ${logMessageArg}`);
|
this.safeConsoleLog(`INCREMENT: ${logLevelArg}: ${logMessageArg}`);
|
||||||
}
|
}
|
||||||
this.logRouter.routeLog({
|
this.logRouter.routeLog({
|
||||||
|
timestamp: Date.now(),
|
||||||
type: 'increment',
|
type: 'increment',
|
||||||
context: this.logContext,
|
context: this.logContext,
|
||||||
level: logLevelArg,
|
level: logLevelArg,
|
||||||
message: logMessageArg
|
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}`);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1 +1,4 @@
|
|||||||
export {};
|
import * as isounique from '@pushrocks/isounique';
|
||||||
|
import * as smartlogInterfaces from '@pushrocks/smartlog-interfaces';
|
||||||
|
|
||||||
|
export { isounique, smartlogInterfaces };
|
||||||
|
Reference in New Issue
Block a user