Fix logger

This commit is contained in:
HungDK
2025-10-08 13:25:43 +07:00
parent 9cdf14c72e
commit a761891403
@@ -50,7 +50,7 @@ namespace BrewMonster.Network
/// <summary>Set the connection info. This MUST be called call before login</summary>
public static void SetConnectionInfo(string ip, int port)
{
Logger.Log($"Set connection info {ip} {port}");
BMLogger.Log($"Set connection info {ip} {port}");
Instance._ip = ip;
Instance._port = port;
}
@@ -62,7 +62,7 @@ namespace BrewMonster.Network
if (Instance._ip == "" || Instance._port == 0)
{
Logger.LogError($"IP or port is not set {Instance._ip} {Instance._port}");
BMLogger.LogError($"IP or port is not set {Instance._ip} {Instance._port}");
onLoginComplete?.Invoke(false);
return;
}
@@ -71,7 +71,7 @@ namespace BrewMonster.Network
if (!Instance._gameSession.IsConnected)
{
Logger.LogError($"Failed to connect to {Instance._ip} {Instance._port}");
BMLogger.LogError($"Failed to connect to {Instance._ip} {Instance._port}");
onLoginComplete?.Invoke(false);
return;
}
@@ -104,7 +104,7 @@ namespace BrewMonster.Network
{
if (!Instance._isInitialized)
{
Logger.LogError("GameSession is not initialized");
BMLogger.LogError("GameSession is not initialized");
return;
}
await Instance._gameSession.ConnectAsync(ip, port);