Lower console spam

This commit is contained in:
Tobias Berger 2021-10-05 12:53:47 +02:00
parent 394e60ee95
commit 6ddb78ef50

View file

@ -80,7 +80,7 @@ export class SaveHandler extends StaticClass {
const stringifiedSave = JSON.stringify(save);
const encodedSave = LZString.compressToBase64(stringifiedSave);
console.debug(
`${new Date(Date.now()).toISOString()} - saving ${stringifiedSave} - encoded to ${
`${new Date(Date.now()).toISOString()} - saving - save encoded to ${
Math.round((encodedSave.length / stringifiedSave.length) * 100 * 100) / 100
}% size`
);