Skip to content

Commit

Permalink
pre commit
Browse files Browse the repository at this point in the history
Signed-off-by: Alptuğ Cırıt <[email protected]>
  • Loading branch information
mozhoku committed Sep 16, 2024
1 parent e8ffb0f commit 590dc4d
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions Assets/AWSIM/Scripts/Loader/Loader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -411,22 +411,22 @@ private void Log(LogLevel level, string message)
{
case LogLevel.LOG_INFO:
{
var msg = $"<color=\"#1F2933\">{message}</color>" + System.Environment.NewLine;
logField.text += msg;
Debug.Log(message);
break;
var msg = $"<color=\"#1F2933\">{message}</color>" + System.Environment.NewLine;
logField.text += msg;
Debug.Log(message);
break;
}
case LogLevel.LOG_ERROR:
{
{
var msg = $"<color=\"red\">{message}</color>" + System.Environment.NewLine;
logField.text += msg;
Debug.LogError(message);
break;
}
logField.text += msg;
Debug.LogError(message);
break;
}
default:
{
break;
}
{
break;
}
}
}
}
Expand Down

0 comments on commit 590dc4d

Please sign in to comment.