<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > AppLog > cAppLog Class > <cAppLog> Properties > <cAppLog>.Description |
Description
Field containing an optional value of logger description. It can be used to enrich logging messages.
Syntax
' SET
<cAppLog>.Description = "Logger I use to log possible issues"
' GET
appId = <cAppLog>.Description
Returns
String value of logger description, if previously set.
Remarks
Completely optional.
Restrictions
See also
Examples
uses "AppLog"
dim myLog as new cAppLog
myLog.Description = "My logger to file and console"