leeh / inversify-logging

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

License:Other


Languages

Language:TypeScript 99.1%Language:JavaScript 0.9%