| Visual Basic (Declaration) | |
|---|---|
<BrowsableAttribute(True)> Public Property ErrorLevel As ErrorLevelInfo | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
[BrowsableAttribute(true)] public ErrorLevelInfo ErrorLevel {get; set;} | |
| Managed Extensions for C++ | |
|---|---|
[BrowsableAttribute(true)] public: __property ErrorLevelInfo get_ErrorLevel(); public: __property void set_ErrorLevel( ErrorLevelInfo value ); | |
| C++/CLI | |
|---|---|
[BrowsableAttribute(true)] public: property ErrorLevelInfo ErrorLevel { ErrorLevelInfo get(); void set (ErrorLevelInfovalue); } | |
The default value is Production.
Valid values are Production, Development, and Detailed.
This property allows you to control the amount of information that the toolkit places into a debug log file. Since it takes some amount of time to generate and write debug log items, you should set this to write the least amount of information that you will find useful.
Note: This property will have no effect if you set the Debug property to false.
