fix(core): update
This commit is contained in:
		| @@ -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": { | ||||
|     "npmGlobalTools": [], | ||||
|     "npmAccessLevel": "public" | ||||
|   | ||||
							
								
								
									
										44
									
								
								readme.md
									
									
									
									
									
								
							
							
						
						
									
										44
									
								
								readme.md
									
									
									
									
									
								
							| @@ -1,23 +1,17 @@ | ||||
| # @pushrocks/smartlog | ||||
| # smartlog | ||||
| minimalistic distributed and extensible logging tool | ||||
|  | ||||
| winston based logger for large scale projects | ||||
|  | ||||
| ## Availabililty | ||||
|  | ||||
| [](https://www.npmjs.com/package/smartlog) | ||||
| [](https://GitLab.com/pushrocks/smartlog) | ||||
| [](https://github.com/pushrocks/smartlog) | ||||
| [](https://pushrocks.gitlab.io/smartlog/) | ||||
| ## Availabililty and Links | ||||
| * [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartlog) | ||||
| * [gitlab.com (source)](https://gitlab.com/pushrocks/smartlog) | ||||
| * [github.com (source mirror)](https://github.com/pushrocks/smartlog) | ||||
| * [docs (typedoc)](https://pushrocks.gitlab.io/smartlog/) | ||||
|  | ||||
| ## Status for master | ||||
|  | ||||
| [](https://GitLab.com/pushrocks/smartlog/commits/master) | ||||
| [](https://GitLab.com/pushrocks/smartlog/commits/master) | ||||
| [](https://www.npmjs.com/package/smartlog) | ||||
| [](https://david-dm.org/pushrocks/smartlog) | ||||
| [](https://www.bithound.io/github/pushrocks/smartlog/master/dependencies/npm) | ||||
| [](https://www.bithound.io/github/pushrocks/smartlog) | ||||
| [](https://snyk.io/test/npm/smartlog) | ||||
| [](https://gitlab.com/pushrocks/smartlog/commits/master) | ||||
| [](https://gitlab.com/pushrocks/smartlog/commits/master) | ||||
| [](https://www.npmjs.com/package/@pushrocks/smartlog) | ||||
| [](https://snyk.io/test/npm/@pushrocks/smartlog) | ||||
| [](https://nodejs.org/dist/latest-v6.x/docs/api/) | ||||
| [](https://nodejs.org/dist/latest-v6.x/docs/api/) | ||||
| [](http://standardjs.com/) | ||||
| @@ -58,24 +52,26 @@ export class MyAwesomeClass { | ||||
| ``` | ||||
|  | ||||
| ### 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 | ||||
| - [@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. | ||||
| For further information read the linked docs at the top of this readme. | ||||
|  | ||||
| > 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.html) | ||||
|  | ||||
| [](https://push.rocks) | ||||
|   | ||||
| @@ -57,7 +57,9 @@ export class Smartlog { | ||||
|    */ | ||||
|   public log(logLevelArg: TLogLevel, logMessageArg: string, logDataArg?: any) { | ||||
|     if (this.consoleEnabled) { | ||||
|       console.log(`LOG => ${new Date().getHours()}:${new Date().getMinutes()}:${new Date().getSeconds()} => ${logLevelArg}: ${logMessageArg}`); | ||||
|       console.log( | ||||
|         `LOG => ${new Date().getHours()}:${new Date().getMinutes()}:${new Date().getSeconds()} => ${logLevelArg}: ${logMessageArg}` | ||||
|       ); | ||||
|     } | ||||
|     const logPackage: ILogPackage = { | ||||
|       timestamp: Date.now(), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user