A logging library for browsers and nodejs environment. It replaces console's logging functions (such as log, warn, error, info etc) with level-based logging.
It creates a wrapper over all the console's logging functions and provide decorators for extending the basic functionalities.
IE9+
: To support IE9 and IE10, Enabled loose mode in babelChrome 10+
Firefox 4+
Safari 6+
Opera 12+
NodeJS 0.5.1+
- Very lightweight (
~5.8KB
minified) - No dependencies
- Log at a given level (log/trace/debug/info/warn/error) to the console
- Disable logging at any level (eg. disable all but error in production by setting log level to error)
- Default log level is
info
- Fallback to
console.log
if more specific ones aren't available eg:trace
is not available inIE9
- Supports all standard JavaScript loading systems (CommonJS, AMD, or global)
- Extensible (using decorators)
Tech
ES6-7
SupportedESLint and Flow
Check enabled- Testing and Code Coverage using
Mocha, Sinon, Chai and Istanbul
- Extend clogy using extensions. Sample extension (
logger-with-metadata
) is present in extensions directory. Check out its Read Me!
NPM
npm install clogy
CDN
Development
:
rawgit: //rawgit.com/pgmanutd/clogy/1.3.3/lib/clogy.js
or
unpkg: //unpkg.com/[email protected]/lib/clogy.js
Production
:
rawgit: //cdn.rawgit.com/pgmanutd/clogy/1.3.3/lib/clogy.min.js
or
unpkg: //unpkg.com/[email protected]/lib/clogy.min.js
clogy supports AMD (e.g. RequireJS), CommonJS (e.g. NodeJS) and direct usage (e.g. loading globally (available as clogy
) with a <script>
tag):
const clogy = require('clogy');
clogy.info('Hello World');
define(['clogy'], (clogy) => {
clogy.info('Hello World again');
});
<script src="clogy.min.js"></script>
<script>
clogy.info('Hello script tag');
</script>
-
LEVELS
: Different log levels (along with values); use them to set the current log level. Order goes from top to bottom.log
: 1trace
: 2debug
: 3info
: 4warn
: 5error
: 6none
: 7 (if current level is none, it won't log anything)
If current log level is
info
, then all the levels belowinfo
are valid and rest are invalid. It meansclogy.info()
,clogy.warn()
andclogy.error()
will work butclogy.log()
,clogy.trace()
andclogy.debug()
won't.For example:
clogy.LEVELS.log; // 1 clogy.LEVELS.error; // 7
-
noConflict
: If you are using another JavaScript library that uses the clogy variable, you can run into conflicts with this library. In order to avoid these conflicts, you need to put clogy in no-conflict mode immediately after it is loaded onto the page and before you attempt to use clogy in your page. It works similar to jQuery's no-conflict mode.For example:
const logger = clogy.noConflict(); logger.info('Still working');
-
getOptions
: Returns options (showDateTime
andprefix
). Probably this might not required for normal application; it's provided to let user know the current options (may be when user is extending the logging functionality using decorators).For example:
clogy.getOptions(); //{ showDateTime: true, prefix: 'Github-' }
where,
-
showDateTime
: It will prepend date and time along with:
and a space. Space is required forIE
where multiple statements are sticked together.- Type: Boolean
- Default: false
For example:
clogy.setOptions({ showDateTime: true }); clogy.info('Hello World'); // Wed Jul 27 2016 17:35:54.452: Hello World
-
prefix
: It will prepend a prefix. It will come after date and time (if enabled).- Type: String
- Default: '' (Emtpy)
For example:
clogy.setOptions({ showDateTime: true, prefix: 'Github-' }); clogy.info('Hello World'); // Wed Jul 27 2016 17:35:54.452: Github- Hello World
-
-
setOptions
: Used for setting options (showDateTime
andprefix
).For example:
clogy.setOptions({ showDateTime: true, prefix: 'Github-' });
-
getLevel
: Returns current log level; Default isinfo
. Probably this might not required for normal application; it's provided to let user know the current log level (may be when user is extending the logging functionality using decorators or skipping logging for any level (clogy.getLevel() === clogy.LEVELS.info ? 'skip : 'proceed'
)).For example:
clogy.getLevel(); // 4 for info and so on
-
setLevel
: Set current log level.For example:
clogy.setLevel(1); // log; number type argument clogy.setLevel(clogy.LEVELS.log); // log; enum type argument clogy.setLevel('log'); // log; string type argument
-
stringifyAllowedLoggers
: Get stringifed allowed loggers (Order goes from top to bottom). Use utf-8 encoding for showing tick and cross marks, if not visible.For example:
clogy.stringifyAllowedLoggers(); // When current log level is info 1: log ✖ 2: trace ✖ 3: debug ✖ 4: info ✔ 5: warn ✔ 6: error ✔
-
enableAllLevels
: Enable all levels; equivalent toclogy.setLevel(clogy.LEVELS.log)
.For example:
clogy.enableAllLevels();
-
disableAllLevels
: Disable all levels; equivalent toclogy.setLevel(clogy.LEVELS.none)
.For example:
clogy.disableAllLevels();
-
decorator
: Used to extend logging functionality. Can be used for:- Adding a prefix
- Submitting logs to server
- Logging to a file
- Showing toast messages
For example:
clogy.log('Hello World'); // Hello World clogy.decorator((originalLogger) => { // Extending log method; you can extend any method // (log/trace/debug/info/warn/error) const originalLog = originalLogger.log; // Don't use arrow functions here, because they will // bind themselves to window or undefined in strict mode originalLogger.log = function() { // See, we are just mutating the parameter's property (which is fine in this case) for extending the functionality // Please don't call clogy.log here, it will create a // circular reference and throws // "RangeError: Maximum call stack size exceeded" error originalLog.apply(this, ['Github-', ...arguments]); }; }); clogy.log('Hello World'); // Github- Hello World
(Default to log
, if not available eg: trace
is not available in IE9
)
-
log
: It will print log message.For example:
clogy.log('Hello World'); // Hello World
-
trace
: It will print trace message.For example:
clogy.trace('Hello World'); // Hello World u @ clogy.min.js:1 (anonymous function) @ clogy.min.js:1 p.(anonymous function) @ clogy.min.js:1 (anonymous function) @ VM188:1
-
debug
: It will print debug message.For example:
clogy.debug('Hello World'); // Hello World
-
info
: It will print info message.For example:
clogy.info('Hello World'); // Hello World
-
warn
: It will print warn message.For example:
clogy.warn('Hello World'); // Hello World
-
error
: It will print error message.For example:
clogy.error('Hello World'); // Hello World u @ clogy.min.js:1 (anonymous function) @ clogy.min.js:1 p.(anonymous function) @ clogy.min.js:1 (anonymous function) @ VM188:1
Anyone can help make this project better - check out the Contributing guide!
Copyright (c) 2017 pgmanutd
Licensed under the MIT license
Free Software, Hell Yeah!