Skip to content

Commit aa752f7

Browse files
authored
Fix an incorrect debug() call
1 parent d4bf21a commit aa752f7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ember-app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,8 +389,8 @@ class EmberApp {
389389
const currentSchemaVersion = FastBootSchemaVersions.latest;
390390
// set schema version to 1 if not defined
391391
schemaVersion = schemaVersion || FastBootSchemaVersions.base;
392-
debug('Current schemaVersion from `ember-cli-fastboot` is %s while latest schema version is %s', (schemaVersion, currentSchemaVersion));
393-
392+
debug('Current schemaVersion from `ember-cli-fastboot` is %s while latest schema version is %s', schemaVersion, currentSchemaVersion);
393+
394394
if (schemaVersion > currentSchemaVersion) {
395395
let errorMsg = chalk.bold.red('An incompatible version between `ember-cli-fastboot` and `fastboot` was found. Please update the version of fastboot library that is compatible with ember-cli-fastboot.');
396396
throw new Error(errorMsg);

0 commit comments

Comments
 (0)