2021-10-31 21:24:55 +01:00
|
|
|
/**
|
2021-11-01 15:09:03 +01:00
|
|
|
* This function creates a custom logging method that adds a prefix everytime used.
|
2021-10-31 21:24:55 +01:00
|
|
|
* 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}`)
|
|
|
|
}
|