Pathfinding.Path.ForceLogError C# (CSharp) Method

ForceLogError() public method

public ForceLogError ( string msg ) : void
msg string
return void
		public void ForceLogError (string msg) {
			Error();

			_errorLog += msg;

			Debug.LogError (msg);
		}

Usage Example

 static int ForceLogError(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 2);
         Pathfinding.Path obj  = (Pathfinding.Path)ToLua.CheckObject <Pathfinding.Path>(L, 1);
         string           arg0 = ToLua.CheckString(L, 2);
         obj.ForceLogError(arg0);
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }