Skip to content

Commit

Permalink
some more explicit scoping
Browse files Browse the repository at this point in the history
  • Loading branch information
finger563 committed Aug 3, 2024
1 parent 3a3b081 commit c4b3d77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/logger/include/logger.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ rate limit. @note Only calls that have _rate_limited suffixed will be rate limit
* \sa Logger::Verbosity
*
*/
Verbosity get_verbosity() const { return level_; }
espp::Logger::Verbosity get_verbosity() const { return level_; }

/**
* @brief Change the verbosity for the logger. \sa Logger::Verbosity
* @param level new verbosity level
*/
void set_verbosity(const Verbosity level) { level_ = level; }
void set_verbosity(const espp::Logger::Verbosity level) { level_ = level; }

/**
* @brief Change the tag for the logger.
Expand Down

0 comments on commit c4b3d77

Please sign in to comment.