Console
Console logging builtins in Tish.
Methods
Log level
Log level is controlled via the TISH_LOG_LEVEL environment variable:
Example:
TISH_LOG_LEVEL=debug ./myapp
TISH_LOG_LEVEL=warn ./myappExample
console.log("Hello, World!")
console.info("Starting up...")
console.debug("Debug info")
console.warn("Warning")
console.error("Error occurred")