Skip to content

Commit

Permalink
turn of spam logs
Browse files Browse the repository at this point in the history
  • Loading branch information
gafferongames committed Dec 22, 2023
1 parent 093005f commit 4255d0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ int main( int argc, char ** argv )
return 1;
}

netcode_log_level( NETCODE_LOG_LEVEL_DEBUG ); //INFO );
netcode_log_level( NETCODE_LOG_LEVEL_INFO );

double time = 0.0;
double delta_time = 1.0 / 60.0;
Expand Down
2 changes: 1 addition & 1 deletion server.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ int main( int argc, char ** argv )
return 1;
}

netcode_log_level( NETCODE_LOG_LEVEL_DEBUG ); // todo INFO );
netcode_log_level( NETCODE_LOG_LEVEL_INFO );

double time = 0.0;
double delta_time = 1.0 / 60.0;
Expand Down

0 comments on commit 4255d0c

Please sign in to comment.