ArchiSteamFarm.Debugging.DebugListener.WriteLine C# (CSharp) 메소드

WriteLine() 공개 메소드

public WriteLine ( string category, string msg ) : void
category string
msg string
리턴 void
            public void WriteLine(string category, string msg)
            {
                if (string.IsNullOrEmpty(category) && string.IsNullOrEmpty(msg)) {
                    ASF.ArchiLogger.LogNullError(nameof(category) + " && " + nameof(msg));
                    return;
                }

                ASF.ArchiLogger.LogGenericDebug(category + " | " + msg);
            }
Debugging.DebugListener