From 1f055ca293dd8f167f27f0d90e502413e281e33a Mon Sep 17 00:00:00 2001 From: Koji Hasegawa Date: Sat, 11 May 2024 13:30:37 +0900 Subject: [PATCH] Fix CreateDefaultLogger method to private refs #52 --- Runtime/Autopilot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/Autopilot.cs b/Runtime/Autopilot.cs index 8251569..d9c0ece 100644 --- a/Runtime/Autopilot.cs +++ b/Runtime/Autopilot.cs @@ -72,7 +72,7 @@ private void Start() /// Default logger is that write to console. /// /// A new logger that write to console - protected virtual ILogger CreateDefaultLogger() + private static ILogger CreateDefaultLogger() { return Debug.unityLogger; }