File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ fnv="1.0"
43
43
scoped_threadpool = " 0.1.6"
44
44
app_units = {version = " 0.2.1" , features = [" plugins" ]}
45
45
lazy_static = " 0.1"
46
+ log = " 0.3"
46
47
47
48
[target .x86_64-apple-darwin .dependencies ]
48
49
core-graphics = " >=0.2, <0.4"
Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ impl AABBTree {
222
222
// include transformed elements, however this isn't currently
223
223
// handled by the layout code! If it's not that, this is an
224
224
// unexpected condition and should be investigated!
225
- println ! ( "WARNING: insert rect {:?} outside bounds, dropped." , rect) ;
225
+ debug ! ( "WARNING: insert rect {:?} outside bounds, dropped." , rect) ;
226
226
} else {
227
227
for node_index in self . work_node_indices . drain ( ..) {
228
228
let NodeIndex ( node_index) = node_index;
Original file line number Diff line number Diff line change 6
6
7
7
#[ macro_use]
8
8
extern crate lazy_static;
9
+ #[ macro_use]
10
+ extern crate log;
9
11
10
12
mod aabbtree;
11
13
mod batch;
You can’t perform that action at this time.
0 commit comments