move logging to debug and make mappers clickable on the score
All checks were successful
Deploy SSR / deploy (push) Successful in 1m13s

This commit is contained in:
Lee
2024-09-12 15:02:03 +01:00
parent 7db722faea
commit 574b1a6532
6 changed files with 76 additions and 20 deletions

View File

@ -16,7 +16,7 @@ export default class DataFetcher {
* @param data the data to log
*/
public log(data: unknown) {
console.log(`[${this.name}]: ${data}`);
console.debug(`[${this.name}]: ${data}`);
}
/**