Accusoft.BarcodeXpressSdk Namespace > BarcodeXpress Class : ErrorLevel Property |
'Declaration <ObsoleteAttribute("Use DebugErrorLevel")> <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)> <BrowsableAttribute(False)> Public Property ErrorLevel As ErrorLevelInfo
'Usage Dim instance As BarcodeXpress Dim value As ErrorLevelInfo instance.ErrorLevel = value value = instance.ErrorLevel
[ObsoleteAttribute("Use DebugErrorLevel")] [DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)] [BrowsableAttribute(false)] public ErrorLevelInfo ErrorLevel {get; set;}
[ObsoleteAttribute("Use DebugErrorLevel")] [DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)] [BrowsableAttribute(false)] public: __property ErrorLevelInfo get_ErrorLevel(); public: __property void set_ErrorLevel( ErrorLevelInfo value );
[ObsoleteAttribute("Use DebugErrorLevel")] [DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)] [BrowsableAttribute(false)] public: property ErrorLevelInfo ErrorLevel { ErrorLevelInfo get(); void set ( ErrorLevelInfo value); }
This property allows you to control the amount of information that the component places into the DebugLogFile. Since it is expensive to generate and write debug log items, set this property to write the least amount of information that you will find useful.
Valid values: Production, Development and Detailed.
Default value: Production
Note: This property will have no effect if the Debug property is set to false.
...
// Set the ErrorLevel of the debugging to Development
bcXpress.ErrorLevel = Accusoft.BarcodeXpressSdk.ErrorLevel.Development;
...