Skip to content

Commit

Permalink
Cleaner output for a debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
japhb committed Feb 23, 2024
1 parent 2e8b7f8 commit 1fac5d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/MUGS/Server.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ class MUGS::Server::Game {
method add-event(::?CLASS:D: GameEventType:D $event-type, *%extra) {
my $event = MUGS::Server::GameEvent.new(:$event-type, :$!game-time,
:timestamp($!prev-time), |%extra);
dd $event if $*DEBUG;
note "Game event added: {$event.raku}" if $*DEBUG;
@!events.push($event);

# GameCreated happens too early for clients to recognize the game;
Expand Down

0 comments on commit 1fac5d0

Please sign in to comment.