Skip to content

Commit

Permalink
Remove Excess Logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Quantam-Studios committed Dec 19, 2024
1 parent c1a7642 commit 500a685
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion commands/wordle-group/helpers/wordleGame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ public override async Task StartBotGame(SocketInteraction interaction)

// Get a word
Word = WordleMethods.GetRandomWord();
Console.WriteLine(Word);

await Message.ModifyAsync(x => { x.Content = null; x.Embed = WordleMethods.CreateEmbed(this); });
}
Expand Down
3 changes: 0 additions & 3 deletions general-helpers/time/timestamps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,6 @@ public static string FromDateTime(DateTime dateTime, Formats format, Timezone? t
// Create DateTimeOffset with the correct offset for the timezone
var dateTimeOffset = new DateTimeOffset(adjustedDateTime, timeZoneInfo.GetUtcOffset(adjustedDateTime));

// Log the DateTimeOffset after conversion
Console.WriteLine("FromDateTime() after gone to DateTimeOffset: " + dateTimeOffset);

// Return the formatted timestamp string
return $"<t:{dateTimeOffset.ToUnixTimeSeconds()}:{(char)format}>";
}
Expand Down

0 comments on commit 500a685

Please sign in to comment.