2020-07-13 13:01:35 +00:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home ](./index.md ) > [puppeteer ](./puppeteer.md ) > [Protocol ](./puppeteer.protocol.md ) > [Console ](./puppeteer.protocol.console.md ) > [ConsoleMessage ](./puppeteer.protocol.console.consolemessage.md )
## Protocol.Console.ConsoleMessage interface
Console message.
< b > Signature:< / b >
```typescript
export interface ConsoleMessage
```
## Properties
| Property | Type | Description |
| --- | --- | --- |
| [column ](./puppeteer.protocol.console.consolemessage.column.md ) | [integer ](./puppeteer.protocol.integer.md ) | Column number in the resource that generated this message (1-based). |
2020-07-20 15:17:06 +00:00
| [level ](./puppeteer.protocol.console.consolemessage.level.md ) | ('log' \| 'warning' \| 'error' \| 'debug' \| 'info') | Message severity. (ConsoleMessageLevel enum) |
2020-07-13 13:01:35 +00:00
| [line ](./puppeteer.protocol.console.consolemessage.line.md ) | [integer ](./puppeteer.protocol.integer.md ) | Line number in the resource that generated this message (1-based). |
2020-07-20 15:17:06 +00:00
| [source ](./puppeteer.protocol.console.consolemessage.source.md ) | ('xml' \| 'javascript' \| 'network' \| 'console-api' \| 'storage' \| 'appcache' \| 'rendering' \| 'security' \| 'other' \| 'deprecation' \| 'worker') | Message source. (ConsoleMessageSource enum) |
2020-07-13 13:01:35 +00:00
| [text ](./puppeteer.protocol.console.consolemessage.text.md ) | string | Message text. |
| [url ](./puppeteer.protocol.console.consolemessage.url.md ) | string | URL of the message origin. |