Console
DeprecatedThis domain is deprecated - use Runtime or Log instead.
Dependencies: Runtime
No symbols match your filter.
Commands
Console.clearMessages
Does nothing.
Console.disable
Disables console domain, prevents further console messages from being reported to the client.
Console.enable
Enables console domain, sends the messages collected so far to the client by means of the
`messageAdded` notification.
Events
Console.messageAdded
Issued when new console message is added.
Parameters
| Name | Type | Description |
|---|---|---|
message
|
ConsoleMessage |
Console message that has been added. |
Types
ConsoleMessage
(object)
Console message.
Properties
| Name | Type | Description |
|---|---|---|
source
|
string |
Message source. |
level
|
string |
Message severity. |
text
|
string |
Message text. |
url
(optional) |
string |
URL of the message origin. |
line
(optional) |
integer |
Line number in the resource that generated this message (1-based). |
column
(optional) |
integer |
Column number in the resource that generated this message (1-based). |