C# Class SkyNet.Log

Global log class
Afficher le fichier Open project: hipolipolopigus/SkyNet_Old

Méthodes publiques

Méthode Description
Add ( Type Type, string Data ) : void

Add an event to the log

PrintAll ( ) : void

Print all events to the console

ToFile ( string Filename ) : void

Save the log to a file

Method Details

Add() public static méthode

Add an event to the log
public static Add ( Type Type, string Data ) : void
Type System.Type The Log.Type to record
Data string The data of the event
Résultat void

PrintAll() public static méthode

Print all events to the console
public static PrintAll ( ) : void
Résultat void

ToFile() public static méthode

Save the log to a file
public static ToFile ( string Filename ) : void
Filename string The file to save to
Résultat void