Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

Commit

Permalink
Cleanup more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
darthdeus committed Apr 28, 2024
1 parent 4987c30 commit 2d2b8c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion comfy-wgpu/src/hot_reload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pub struct HotReload {

impl HotReload {
pub fn new() -> Self {
println!("SHADER HOT RELOADING ENABLED!");
info!("SHADER HOT RELOADING ENABLED!");

let (tx, rx) = std::sync::mpsc::channel();

Expand Down
2 changes: 1 addition & 1 deletion comfy-wgpu/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ pub fn create_render_pipeline(

let shader = device.create_shader_module(wgpu_shader);

println!("CREATED SHADER, GOT {:?}", shader);
info!("CREATED SHADER, GOT {:?}", shader);

let blend_state = match blend_mode {
BlendMode::Alpha => Some(wgpu::BlendState::ALPHA_BLENDING),
Expand Down
2 changes: 1 addition & 1 deletion comfy/src/cached_image_loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ impl CachedImageLoader {
let mut failed = false;

if !self.images.contains_key(path) {
println!("Loading uncached {}", path);
info!("Loading uncached egui image {}", path);

let texture = texture_id_safe(path).or_else(|| {
Assets::error_loading_image(path);
Expand Down

0 comments on commit 2d2b8c1

Please sign in to comment.