digivote/libs/log.js

13 lines
448 B
JavaScript
Raw Normal View History

2022-01-12 20:54:11 +01:00
/**
* This function creates a custom logging method that adds a prefix evrytime used.
* This is so that you can see what component has done what.
* Example:
* The database-component would log with the prefix 'database'
*
* @param {string} prefix The prefix for the logging-function.
* @returns {function} The created log function.
*/
export default function initLog(prefix) {
return string => console.log(`${prefix} >>> ${string}`)
}