- Editor.Console
- Methods
- Editor.trace(level[, …args])
- Editor.log([…args])
- Editor.success([…args])
- Editor.failed([…args])
- Editor.info([…args])
- Editor.warn([…args])
- Editor.error([…args])
- Methods
Editor.Console
Methods
Editor.trace(level[, …args])
levelString - The log level…args… - Whatever arguments the message needs
Trace the log.
Editor.log([…args])
…args… - Whatever arguments the message needs
Log the normal message and show on the console.The method will send ipc messageeditor:renderer-console-logto the main process.
Editor.success([…args])
…args… - Whatever arguments the message needs
Log the success message and show on the console.The method will send ipc messageeditor:renderer-console-successto the main process.
Editor.failed([…args])
…args… - Whatever arguments the message needs
Log the failed message and show on the console.The method will send ipc messageeditor:renderer-console-failedto the main process.
Editor.info([…args])
…args… - Whatever arguments the message needs
Log the info message and show on the console.The method will send ipc messageeditor:renderer-console-infoto the main process.
Editor.warn([…args])
…args… - Whatever arguments the message needs
Log the warn message and show on the console.The method will send ipc messageeditor:renderer-console-warnto the main process.
Editor.error([…args])
…args… - Whatever arguments the message needs
Log the error message and show on the console.The method will send ipc messageeditor:renderer-console-errorto the main process.
