Method | Description | |
---|---|---|
Info ( string msg ) : void |
Log a info message to the console.
|
|
Log ( string msg, ConsoleColor color ) : void |
Log a regular message to the console.
|
|
Success ( string msg ) : void |
Log a success message to the console.
|
|
Warning ( string msg ) : void |
Log a warning message to the console.
|
public static Info ( string msg ) : void | ||
msg | string | Info message to log. |
return | void |
public static Log ( string msg, ConsoleColor color ) : void | ||
msg | string | Text to log. |
color | ConsoleColor | Console color to log with. |
return | void |
public static Success ( string msg ) : void | ||
msg | string | Success message to log. |
return | void |
public static Warning ( string msg ) : void | ||
msg | string | Warning message to log. |
return | void |