Beispiel #1
0
    protected bool IsFail_ArgCheck(nNWM.nConsole.jConsoleArg arg, string sFormat)    // 인자 유효성검사가 실패이면 true 리턴.
    {
        string error = arg.CheckArg(sFormat);

        if (error.Length == 0)
        {
            return(false);
        }
        m_CMD.LogWarning(error);
        return(true);
    }
Beispiel #2
0
 public void LogWarning(string strLog)
 {
     m_CMD.LogWarning(strLog);
 }