DicomObjects.NET Core Documentation
DicomObjects.Enums Namespace / LogLevel Enumeration



In This Topic
    LogLevel Enumeration
    In This Topic
    Log levels
    Syntax
    'Declaration
     
    
    <FlagsAttribute()>
    Public Enum LogLevel 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As LogLevel
    [Flags()]
    public enum LogLevel : System.Enum 
    [Flags()]
    public enum class LogLevel : public System.Enum 
    Members
    MemberDescription
    ALLBYTESIN Full incoming network traffic
    ALLBYTESOUT Full outgoing network traffic
    CACHE Detailed cache usage data (only on specific test builds)
    CODEC Detailed codec logging (e.g. loading of codecs)
    DEBUG Specialist debug data (only on specific test builds)
    DETAILED Detailed informational messages
    ELEMENTSIN Interpetted version of incoming attributes (file and network)
    ELEMENTSOUT Interpetted version of outgoing attributes (file and network)
    ERROR Errors
    HIGH Detailed byte level log (includes all levels)
    JPIP Detailed JPIP logging
    LIMITEDBYTESIN PDU and PDV headers for incoming network traffic
    LIMITEDBYTESOUT PDU and PDV headers for outgong network traffic
    LOG Miscellaneous informational messages
    LOW Errors and main events only
    MEDIUM Most data incoming and outgoing, errors and warnings
    PROFILE Profiling data (only on specific test builds)
    WARNING Warnings
    Remarks
    These are a bit filed and may be combined as required, though common values are:
    • 7: errors, warning and information
    • 63 (3F): Basic attributes in and out
    • Full byte level for network operations
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             DicomObjects.Enums.LogLevel

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also