Lower console spam
This commit is contained in:
parent
394e60ee95
commit
6ddb78ef50
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ export class SaveHandler extends StaticClass {
|
||||||
const stringifiedSave = JSON.stringify(save);
|
const stringifiedSave = JSON.stringify(save);
|
||||||
const encodedSave = LZString.compressToBase64(stringifiedSave);
|
const encodedSave = LZString.compressToBase64(stringifiedSave);
|
||||||
console.debug(
|
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
|
Math.round((encodedSave.length / stringifiedSave.length) * 100 * 100) / 100
|
||||||
}% size`
|
}% size`
|
||||||
);
|
);
|
||||||
|
|
Reference in a new issue