logging image

This commit is contained in:
defnotken
2025-11-11 10:59:02 -06:00
parent fac5b3caef
commit 44dc35ff99

View File

@@ -57,6 +57,7 @@ public class LightlessModule : InteractionModuleBase
{
_logger.LogWarning("Fetching profile image for UID: {uid}", uidToGet);
byte[] profileImage = await GetProfileImage(db, uid).ConfigureAwait(false);
_logger.LogWarning("Image in Bytes: {img}", profileImage);
MemoryStream ms = new(profileImage);
await using (ms.ConfigureAwait(false))
{