Skip to content

Instantly share code, notes, and snippets.

@hgzimmerman
Created January 18, 2019 00:20
Show Gist options
  • Save hgzimmerman/19508b3876f80dd5478877be8b60f715 to your computer and use it in GitHub Desktop.
Save hgzimmerman/19508b3876f80dd5478877be8b60f715 to your computer and use it in GitHub Desktop.
debug debug
macro_rules! debug_dbg {
($($x: tt)*) => {{
if cfg!(debug_assertions) {
dbg!($($x)*)
} else {
$($x)*
}
}}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment