The human-readable name of this output channel.
The current log level of the channel. Defaults to editor log level.
An Event which fires when the log level of the channel changes.
Append the given value to the channel.
A string, falsy values will not be printed.
Append the given value and a line feed character to the channel.
A string, falsy values will be printed.
Replaces all output from the channel with the given value.
A string, falsy values will not be printed.
Removes all output from the channel.
Reveal this channel in the UI.
When true
the channel will not take focus.
Reveal this channel in the UI.
This argument is deprecated and will be ignored.
When true
the channel will not take focus.
Hide this channel from the UI.
Dispose and free associated resources.
Outputs the given trace message to the channel. Use this method to log verbose information.
The message is only logged if the channel is configured to display trace log level.
trace message to log
Outputs the given debug message to the channel.
The message is only logged if the channel is configured to display debug log level or lower.
debug message to log
Outputs the given information message to the channel.
The message is only logged if the channel is configured to display info log level or lower.
info message to log
Outputs the given warning message to the channel.
The message is only logged if the channel is configured to display warning log level or lower.
warning message to log
Outputs the given error or error message to the channel.
The message is only logged if the channel is configured to display error log level or lower.
Error or error message to log
A channel for containing log output.
To get an instance of a
LogOutputChannel
use createOutputChannel.