mirror of
https://github.com/photonstorm/phaser
synced 2024-11-15 09:27:37 +00:00
eslint-disable no-console
This commit is contained in:
parent
7b66f486d4
commit
e7130fb546
2 changed files with 2 additions and 0 deletions
|
@ -412,6 +412,7 @@ var File = new Class({
|
|||
*/
|
||||
onProcessError: function ()
|
||||
{
|
||||
// eslint-disable-next-line no-console
|
||||
console.error('Failed to process file: %s "%s"', this.type, this.key);
|
||||
|
||||
this.state = CONST.FILE_ERRORED;
|
||||
|
|
|
@ -232,6 +232,7 @@ var MultiFile = new Class({
|
|||
{
|
||||
this.failed++;
|
||||
|
||||
// eslint-disable-next-line no-console
|
||||
console.error('File failed: %s "%s" (via %s "%s")', this.type, this.key, file.type, file.key);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue