Skip to content

Commit

Permalink
[fix] when used externally, brings 'skip_error_and_log' in scope
Browse files Browse the repository at this point in the history
  • Loading branch information
woshilapin committed Sep 21, 2021
1 parent c280861 commit 9a86dd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "skip_error"
version = "3.1.0"
version = "3.1.1"
license = "MIT"
authors = ["Kisio Digital <[email protected]>"]
description = "Utility helping skip and log Result::Error in iterations"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ macro_rules! skip_error_macro_generation {
#[macro_export]
macro_rules! $macro_name {
($result:expr) => {{
skip_error_and_log!($result, $log_level)
$crate::skip_error_and_log!($result, $log_level)
}};
}
};
Expand Down

0 comments on commit 9a86dd9

Please sign in to comment.