Skip to content

Commit

Permalink
test(core): unformat macros doc examples
Browse files Browse the repository at this point in the history
  • Loading branch information
ivangabriele committed Nov 2, 2024
1 parent 6343600 commit 464375e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src-tauri/src/libs/logger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ pub async fn write_log_message(log_file_name: &str, scope: &str, message: &str)
///
/// # Examples
///
/// ```no_run
/// debug!("my_function()", "Value: {}", 42);
/// ```
#[macro_export]
macro_rules! debug {
($function_name:expr, $($arg:tt)*) => {{
Expand All @@ -61,9 +59,7 @@ macro_rules! debug {
///
/// # Examples
///
/// ```no_run
/// error!("my_function()", "Value: {}", 42);
/// ```
#[macro_export]
macro_rules! error {
($function_name:expr, $($arg:tt)*) => {{
Expand Down

0 comments on commit 464375e

Please sign in to comment.