Merge pull request #746 from resin-io/fix-apply-reporting

logger: Fix reporting the configuration change variables
This commit is contained in:
CameronDiver 2018-09-13 15:12:43 +01:00 committed by GitHub
commit 39651b94f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -335,7 +335,7 @@ export class Logger {
eventName = 'Apply config change error';
obj.error = err;
} else {
message = `Applying configuration change #{JSON.stringify(config)}`;
message = `Applying configuration change ${JSON.stringify(config)}`;
eventName = 'Apply config change in progress';
}