C# Class hhs_p6_webshop_project.App.Util.LogUtils

Show file Open project: timvisee/hhs-p6-webshop-project

Public Methods

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.

Method Details

Info() public static method

Log a info message to the console.
public static Info ( string msg ) : void
msg string Info message to log.
return void

Log() public static method

Log a regular message to the console.
public static Log ( string msg, ConsoleColor color ) : void
msg string Text to log.
color ConsoleColor Console color to log with.
return void

Success() public static method

Log a success message to the console.
public static Success ( string msg ) : void
msg string Success message to log.
return void

Warning() public static method

Log a warning message to the console.
public static Warning ( string msg ) : void
msg string Warning message to log.
return void