C# Class Jurassic.Library.StandardConsoleOutput

Represents an implementation of the Firebug API using the standard console.
Inheritance: IFirebugConsoleOutput
Show file Open project: paulbartrum/jurassic

Public Methods

Method Description
Clear ( ) : void

Clears the console.

EndGroup ( ) : void

Ends the most recently started group.

Log ( FirebugConsoleMessageStyle style, object objects ) : void

Logs a message to the console.

StartGroup ( string title, bool initiallyCollapsed ) : void

Starts grouping messages together.

Method Details

Clear() public method

Clears the console.
public Clear ( ) : void
return void

EndGroup() public method

Ends the most recently started group.
public EndGroup ( ) : void
return void

Log() public method

Logs a message to the console.
public Log ( FirebugConsoleMessageStyle style, object objects ) : void
style FirebugConsoleMessageStyle A style which influences the icon and text color.
objects object The objects to output to the console. These can be strings or /// ObjectInstances.
return void

StartGroup() public method

Starts grouping messages together.
public StartGroup ( string title, bool initiallyCollapsed ) : void
title string The title for the group.
initiallyCollapsed bool true if subsequent messages should be hidden by default.
return void