diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-04-17 10:31:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-17 10:31:47 -0400 |
| commit | 855650215f5011082f6a3fa4dcfb69b040367911 (patch) | |
| tree | c744c49d7c62c1051c99a12b793377ae40113e1f /src/envsecurity.cpp | |
| parent | ff912b5f6199ade55a4eaff1c8e7eefb8145c970 (diff) | |
| parent | 21166f820bc793111ad40a950807dc84e961fad5 (diff) | |
Merge pull request #1054 from isanae/bunch-of-fixes
Bunch of fixes
Diffstat (limited to 'src/envsecurity.cpp')
| -rw-r--r-- | src/envsecurity.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/envsecurity.cpp b/src/envsecurity.cpp index 6f4826e7..8b1d25b2 100644 --- a/src/envsecurity.cpp +++ b/src/envsecurity.cpp @@ -108,7 +108,8 @@ private: &rawService); if (FAILED(res) || !rawService) { - log::error( + // don't log as error, seems to happen often for some people + log::debug( "locator->ConnectServer() failed for namespace '{}', {}", ns, formatSystemMessage(res)); @@ -243,7 +244,7 @@ QString SecurityProduct::providerToString() const } if (ps.empty()) { - return "doesn't provider anything"; + return "doesn't provide anything"; } return ps.join("|"); @@ -392,7 +393,8 @@ std::optional<SecurityProduct> getWindowsFirewall() // testing for both because it's not clear which it is and nobody can // reproduce it if (hr != EPT_S_NOT_REGISTERED && hr != 0x800706d9) { - log::error("get_FirewallEnabled failed, {}", formatSystemMessage(hr)); + // don't log as error + log::debug("get_FirewallEnabled failed, {}", formatSystemMessage(hr)); } return {}; |
