add logger

This commit is contained in:
Felix Roos 2022-11-10 21:10:33 +01:00
parent eca92cf5b5
commit 25ffc9cf96
2 changed files with 6 additions and 1 deletions

3
packages/core/logger.mjs Normal file
View file

@ -0,0 +1,3 @@
export function logger(message) {
console.log(`${message}`, 'background-color: black;color:white;padding:4px;border-radius:15px');
}