inversify-logging
TypeScript icon, indicating that this package has built-in type declarations

0.2.1 • Public • Published

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.

Readme

Keywords

none

Package Sidebar

Install

npm i inversify-logging

Weekly Downloads

6

Version

0.2.1

License

none

Unpacked Size

16.4 kB

Total Files

19

Last publish

Collaborators

  • tierratelematics