antv-l7/node_modules/inversify-logging
thinkinggis f7e5376b7d fix(fix css): fix css png 2019-11-22 18:04:14 +08:00
..
dist fix(fix css): fix css png 2019-11-22 18:04:14 +08:00
node_modules/reflect-metadata fix(fix css): fix css png 2019-11-22 18:04:14 +08:00
.npmignore fix(fix css): fix css png 2019-11-22 18:04:14 +08:00
.travis.yml fix(fix css): fix css png 2019-11-22 18:04:14 +08:00
LICENSE.txt fix(fix css): fix css png 2019-11-22 18:04:14 +08:00
README.md fix(fix css): fix css png 2019-11-22 18:04:14 +08:00
changelog.md fix(fix css): fix css png 2019-11-22 18:04:14 +08:00
package-lock.json fix(fix css): fix css png 2019-11-22 18:04:14 +08:00
package.json fix(fix css): fix css png 2019-11-22 18:04:14 +08:00

README.md

Inversify logging

Contextual logging for inversify powered applications.

Installation

$ npm i inversify-logging

Usage

Activate the logger for an inversify container:

import {activateLogging} from "inversify-logging";

activateLogging(inversifyContainer);

And log!

import {inject} from "inversify";
import {ILogger, LoggingContext} from "inversify-logging";

@LoggingContext("TestClass")
class TestClass {

    @inject("ILogger") logger: ILogger; //Currently only logger injection on properties is supported

    constructor() {
        logger.info("Logs!"); // This outputs [TestClass] Logs!
    }
}

License

Copyright 2016 Tierra SpA

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.