dobefore / mslnk

Rust implementation to create Windows shortcut (ms shell .lnk)
11 stars 2 forks source link

Replace dbg! with debug! #1

Closed zduny closed 2 years ago

zduny commented 2 years ago

!dbg macro produces output even in release builds. It is impossible for users of this library to suppress that output. My quick fix proposal is to replace dbg! macro with debug! macro from log crate.

dobefore commented 2 years ago

thanks for this ,i'm happy to merge.