Finished work on the Smappi Logger and Log tab
April 27, 2018, 6:28 a.m.
Updated July 6, 2018, 11:43 a.m.
In the Smappi Common Library, a tool for data logging is added, examples of use are:
const { logger } = require('smappi-cl');
try {
// something
} catch (err) {
logger.error(err);
}
or like this
const { logger: console } = require('smappi-cl');
console.log('Test of console')
And also, for each project there is a Log tab, where all the entries from the log are displayed.
If the ability to search and filter by level