fCraft.IRC.IrcThread.LogDisconnectWarning C# (CSharp) 메소드

LogDisconnectWarning() 정적인 개인적인 메소드

static private LogDisconnectWarning ( [ ex ) : void
ex [
리턴 void
            static void LogDisconnectWarning([NotNull] Exception ex) {
                if (ex == null) throw new ArgumentNullException("ex");
                Logger.Log(LogType.Warning,
                           "IRC: Disconnected ({0}: {1}). Will retry in {2} seconds.",
                           ex.GetType().Name,
                           ex.Message,
                           ReconnectDelay.TotalSeconds);
            }