Skip to content

Commit

Permalink
fix broken log
Browse files Browse the repository at this point in the history
  • Loading branch information
gafferongames committed Dec 26, 2023
1 parent e9e16a1 commit a48579e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/yojimbo_base_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ namespace yojimbo
m_clientConnection[i]->AdvanceTime( time );
if ( m_clientConnection[i]->GetErrorLevel() != CONNECTION_ERROR_NONE )
{
yojimbo_printf( YOJIMBO_LOG_LEVEL_ERROR, "client %d connection is in error state. disconnecting client\n", m_clientConnection[i]->GetErrorLevel() );
yojimbo_printf( YOJIMBO_LOG_LEVEL_ERROR, "client %d connection is in error state. disconnecting client\n", i );
DisconnectClient( i );
continue;
}
Expand Down

0 comments on commit a48579e

Please sign in to comment.