diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-06-16 22:43:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-16 22:43:32 +0200 |
commit | a33e7c13fa0eb9719090f766e328bdd72821f91f (patch) | |
tree | 12edac623abae3bfbbf336a67386ce860618f7cb /src | |
parent | Merge pull request #8474 from DCNick3/yuzu-cmd-respect-log-filter (diff) | |
parent | common: param_package: Demote DEBUG to TRACE for getters (diff) | |
download | yuzu-a33e7c13fa0eb9719090f766e328bdd72821f91f.tar yuzu-a33e7c13fa0eb9719090f766e328bdd72821f91f.tar.gz yuzu-a33e7c13fa0eb9719090f766e328bdd72821f91f.tar.bz2 yuzu-a33e7c13fa0eb9719090f766e328bdd72821f91f.tar.lz yuzu-a33e7c13fa0eb9719090f766e328bdd72821f91f.tar.xz yuzu-a33e7c13fa0eb9719090f766e328bdd72821f91f.tar.zst yuzu-a33e7c13fa0eb9719090f766e328bdd72821f91f.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/common/param_package.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/param_package.cpp b/src/common/param_package.cpp index bbf20f5eb..462502e34 100644 --- a/src/common/param_package.cpp +++ b/src/common/param_package.cpp @@ -76,7 +76,7 @@ std::string ParamPackage::Serialize() const { std::string ParamPackage::Get(const std::string& key, const std::string& default_value) const { auto pair = data.find(key); if (pair == data.end()) { - LOG_DEBUG(Common, "key '{}' not found", key); + LOG_TRACE(Common, "key '{}' not found", key); return default_value; } @@ -86,7 +86,7 @@ std::string ParamPackage::Get(const std::string& key, const std::string& default int ParamPackage::Get(const std::string& key, int default_value) const { auto pair = data.find(key); if (pair == data.end()) { - LOG_DEBUG(Common, "key '{}' not found", key); + LOG_TRACE(Common, "key '{}' not found", key); return default_value; } @@ -101,7 +101,7 @@ int ParamPackage::Get(const std::string& key, int default_value) const { float ParamPackage::Get(const std::string& key, float default_value) const { auto pair = data.find(key); if (pair == data.end()) { - LOG_DEBUG(Common, "key {} not found", key); + LOG_TRACE(Common, "key {} not found", key); return default_value; } |