Skip to content

Commit

Permalink
fix: fixing cloud log not using logger (#2141)
Browse files Browse the repository at this point in the history
  • Loading branch information
James-Frowen committed Aug 6, 2020
1 parent 23b9fb0 commit a124f3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/Mirror/Cloud/ListServer/ListServerServerApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void RemoveServer()

if (string.IsNullOrEmpty(serverId))
{
Debug.LogWarning("Can not remove server because serverId was empty");
Logger.LogWarning("Can not remove server because serverId was empty");
return;
}

Expand Down Expand Up @@ -203,7 +203,7 @@ void removeServerWithoutCoroutine()
{
if (string.IsNullOrEmpty(serverId))
{
Debug.LogWarning("Can not remove server becuase serverId was empty");
Logger.LogWarning("Can not remove server becuase serverId was empty");
return;
}

Expand Down

0 comments on commit a124f3f

Please sign in to comment.