|
@@ -133,9 +133,11 @@ fn main() {
|
|
|
let config: Config = serde_yaml::from_str(&config).expect("Failed to parse config file");
|
|
|
|
|
|
// Patch pen settings
|
|
|
+ let time: Instant = Instant::now();
|
|
|
config
|
|
|
.ops
|
|
|
.apply(&mut file.pens_offset.data.pens, &mut file.layers_offset);
|
|
|
+ trace!("Config processing time: {:?}", time.elapsed());
|
|
|
}
|
|
|
|
|
|
// Process output
|