cAppLog Class usage example

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > AppLog > cAppLog Class >

cAppLog Class usage example

 

To get a better idea, here is a simple example logging to a specified file.

 

uses "AppLog"

 

dim myLog as new cAppLog

 

myLog.TextFile.FileName = APP_ScriptPath + "myApplication.log"

myLog.TextFile.Active   = %true

 

myLog.Log.Trace("AppLog this is a Trace level text")

myLog.Log.Debug("AppLog this is a Debug level text")

myLog.Log.Info("AppLog this is a Info  level text")

myLog.Log.Warn("AppLog this is a Warn  level text")

myLog.Log.Error("AppLog this is a Error level text")

myLog.Log.Fatal("AppLog this is a Fatal level text")