Skip to content

TheraPackages/console-panel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Console panel package

a thera console view, which allows you to log text using static calls, to easily exec command line

API reference

When consuming console panel you'll get instance of ConsoleManager which has following methods:

' toggle() '

Toggles console panel.

' log(message, level='info') '

Logs a message. message can be String or a custom View that will be appended.

' error(message) '

Logs an error.

' warn(message) '

Logs a warning.

' notice(message) '

Logs a notice.

' debug(message) '

Logs an debug message.

' raw(rawText, level='info', lineEnding="\n") '

Logs a raw message. rawText will be split by lineEnding and each line will be added separately as level.

' clear() '

Clears whole console.

Used

consolepanle