Skip to content

Commit 2324751

Browse files
author
Gareth Jones
committed
docs(README): fixed org references
1 parent 78c1554 commit 2324751

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ This library is intended for use by other library makers that want to include su
55
## Installation
66

77
```
8-
npm install log4js-api
8+
npm install @log4js-node/log4js-api
99
```
1010

1111
## Usage
1212

1313
Use as you would log4js - only without configuring it, it would be your library's clients that are responsible for configuring log4js (if they want to). The API is limited to only `getLogger` on the log4js object, and returns a Logger object that only supports the basic log functions (trace, debug, info, warn, error, fatal). If log4js is found in the require path, then the real log4js Logger object is returned.
1414

1515
```javascript
16-
const log4js = require('log4js-api');
16+
const log4js = require('@log4js-node/log4js-api');
1717
const logger = log4js.getLogger('my-library');
1818

1919
logger.info("Library starting up");

0 commit comments

Comments
 (0)