Skip to content

Commit

Permalink
Replace usage of log.warning with log.warn
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Jan 14, 2024
1 parent cd9782a commit 03cd07f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/virtual-machine.js
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,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);
}

Expand Down

0 comments on commit 03cd07f

Please sign in to comment.