Cim.Eap.EapLogger.Debug C# (CSharp) Method

Debug() public static method

public static Debug ( object msg ) : void
msg object
return void
        public static void Debug(object msg)
        {
            log.Debug(msg);
        }

Usage Example

コード例 #1
0
 public void Debug(string msg)
 {
     EapLogger.Debug("SECS/GEM Error: " + msg);
 }