This commit is contained in:
CortexCore
2023-08-18 11:03:06 +08:00
parent 0cee02523b
commit 003fff50fa
16 changed files with 36 additions and 22 deletions

View File

@@ -22,7 +22,6 @@ public partial class BITAppForGodot : Node
BIT4Log.OnWarning += GD.PushWarning;
BIT4Log.OnNextLine += () => GD.Print();
BIT4Log.OnException += x=>GD.PrintErr(x.ToString());
BIT4Log.UseLogTime();
//启动BITApp
BITApp.Start(ProjectSettings.GetSetting("application/config/name").AsString());

View File

@@ -17,7 +17,7 @@ public partial class Exec : Node
}
else
{
BIT4Log.Warnning<Exec>($"未加载:{path}");
BIT4Log.Warning<Exec>($"未加载:{path}");
}
}
}