All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Fix for sourcemap parsing in Firefox #227. Thanks @bmtheo
- Fix for logging complex structures (circular) without introducing a new dependency #223. Thanks @bmtheo
- A new option
proxiedSteps
{number} has been introduced. When set to a number, the given number of steps will be ignored in the stacktrace to compute the caller location. If you happen to always see the same location reported in the logs (for example a wrapper service of your own), tune this option to skip this step in the stack traces #192. Thanks @amilor & @bmtheo - New config option
disableFileDetails
(defaults to false). When set totrue
, filename details will not be shown in log messages (#214). Thanks @Raphy - Calling the
debug
endpoint now useconsole.debug
api on the browser (#213). Thanks @bmtheo - Gives direct accesss to current log levels through
level()
andserverLogLevel()
. #215. Thanks @bmtheo
- Fix missing
HttpClientModule
import (#212). Thanks @markterrill - Various dependencies bumps
- Fixed issues with filename and line number being incorrect
- Now supports custom color schemes for logs (see README)
- Now support custom format timestamps in addition to pre-defined ones in Angular @qortex. Fixes #178.
- Importing mocks and the logger testing module should now be imported from the new testing entrypoint
import {LoggerTestingModule} from 'ngx-logger/testing';