summaryrefslogtreecommitdiffstats
path: root/glutin
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2023-02-23 19:38:43 +0100
committerLibravatar GitHub <noreply@github.com>2023-02-23 19:38:43 +0100
commit573d27eb52bbfacf1b06983b4282f00eb5265bdc (patch)
tree116e1e51d5d66e0a02cc474fbbdae4205f03090d /glutin
parent666f3cd143047e49a010f0c97eabc7136f92aa35 (diff)
parent07a7681dba5a9a40627689246d2a84414dfc48d3 (diff)
downloadiced-573d27eb52bbfacf1b06983b4282f00eb5265bdc.tar.gz
iced-573d27eb52bbfacf1b06983b4282f00eb5265bdc.tar.bz2
iced-573d27eb52bbfacf1b06983b4282f00eb5265bdc.zip
Merge pull request #1731 from tarkah/fix/debug-bytes
Remove logging large bytes arrays
Diffstat (limited to '')
-rw-r--r--glutin/src/application.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/glutin/src/application.rs b/glutin/src/application.rs
index b7bf21c3..5921bdd0 100644
--- a/glutin/src/application.rs
+++ b/glutin/src/application.rs
@@ -71,7 +71,7 @@ where
settings.id,
);
- log::info!("Window builder: {:#?}", builder);
+ log::debug!("Window builder: {:#?}", builder);
let opengl_builder = ContextBuilder::new()
.with_vsync(true)