Skip to content

Commit

Permalink
Change verbosity CommandlineArgs (recorder/replayer) fuzzy level to d…
Browse files Browse the repository at this point in the history
…efault

Signed-off-by: Lucia Echevarria <[email protected]>
  • Loading branch information
LuciaEchevarria99 committed Feb 16, 2024
1 parent c4f1a63 commit 1fee2bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ struct CommandlineArgsRecorder: public ddspipe::core::CommandlineArgs
utils::Duration_ms timeout{0};

// Verbosity level for logging
utils::Fuzzy<utils::VerbosityKind> log_verbosity{utils::VerbosityKind::Warning, utils::FuzzyLevelValues::fuzzy_level_fuzzy};
utils::Fuzzy<utils::VerbosityKind> log_verbosity{utils::VerbosityKind::Warning, utils::FuzzyLevelValues::fuzzy_level_default};
};

} /* namespace yaml */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ struct CommandlineArgsReplayer: public ddspipe::core::CommandlineArgs
std::string input_file{""};

// Verbosity level for logging
utils::Fuzzy<utils::VerbosityKind> log_verbosity{utils::VerbosityKind::Warning, utils::FuzzyLevelValues::fuzzy_level_fuzzy};
utils::Fuzzy<utils::VerbosityKind> log_verbosity{utils::VerbosityKind::Warning, utils::FuzzyLevelValues::fuzzy_level_default};
};

} /* namespace yaml */
Expand Down

0 comments on commit 1fee2bd

Please sign in to comment.