# console The console object provides access to the Minecraft's debugging console, the content log GUI and the content log file. ## Syntax ```js console.log("Hello World"); ``` ## Methods - `console.error()` Outputs an error message. - `console.warn()` Outputs a warning message. - `console.info()` For general output of logging information, can only be displayed in Content log file and debugging consoles. - `console.log()` For general output of logging information, can only be displayed in Content log file and debugging consoles. ## Learn more Resources are obtained from here: https://developer.mozilla.org/en-US/docs/Web/API/Console