diff --git a/src/virtual-machine.js b/src/virtual-machine.js index 30e809b6d..0d09fa077 100644 --- a/src/virtual-machine.js +++ b/src/virtual-machine.js @@ -464,7 +464,7 @@ class VirtualMachine extends EventEmitter { * @returns {Promise} Promise that resolves after the project has loaded */ fromJSON (json) { - log.warning('fromJSON is now just a wrapper around loadProject, please use that function instead.'); + log.warn('fromJSON is now just a wrapper around loadProject, please use that function instead.'); return this.loadProject(json); }