Skip to content

Commit 3d788da

Browse files
committed
fix formatting
1 parent a93f5e6 commit 3d788da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/server/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ func main() {
9696
}
9797

9898
// Start the server
99-
log.Info().Msgf("Starting server on ", port)
99+
log.Info().Msgf("Starting server on %v", port)
100100
if err := server.ListenAndServe(); err != nil {
101101
log.Fatal().Msgf("Server failed to start: %v", err)
102102
}

internal/tasks/analytics.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ func HandleAnalyticsDeliveryTask(ctx context.Context, t *asynq.Task, db *mongo.C
5858
if err != nil {
5959
log.Error().Msgf("Error inserting redirection analytics data %v", err)
6060
}
61-
log.Info().Msg("Successfully recorded redireciton analytics data")
61+
log.Info().Msg("Successfully recorded redireciton analytics data")
6262
return nil
6363
}

0 commit comments

Comments
 (0)