//! One of the goals of the bot is to never save user-images to disk (for //! performance and safety reasons), opting to perform operations in-memory //! instead. //! //! While great in practice, this makes debugging much harder. This module //! allows for a convenient way to throw images into a `logs` directory with //! a simple env var. use std::{env, ops::Deref}; use image::{DynamicImage, EncodableLayout, ImageBuffer, PixelWithColorType}; use poise::serenity_prelude::Timestamp; use crate::context::Error; #[inline] fn should_save_debug_images() -> bool { env::var("SHIMMERING_DEBUG_IMGS") .map(|s| s == "1") .unwrap_or(false) } #[inline] pub fn debug_image_log(image: &DynamicImage) -> Result<(), Error> { if should_save_debug_images() { image.save(format!("./logs/{}.png", Timestamp::now()))?; } Ok(()) } #[inline] pub fn debug_image_buffer_log
(image: &ImageBuffer
) -> Result<(), Error>
where
P: PixelWithColorType,
[P::Subpixel]: EncodableLayout,
C: Deref