diff options
author | Méven Car <meven29@gmail.com> | 2021-08-25 10:56:41 +0200 |
---|---|---|
committer | Méven Car <meven29@gmail.com> | 2021-08-26 09:11:28 +0000 |
commit | 3259a6e6530cb0526bf71733ba28015f481f056e (patch) | |
tree | d0e18edf36ed87dfcb78df0edf5b925644051efb /src/core/kdesktopfile.cpp | |
parent | e65ecb48521038c20573901acb38f3d8346a6636 (diff) | |
download | kconfig-3259a6e6530cb0526bf71733ba28015f481f056e.tar.gz kconfig-3259a6e6530cb0526bf71733ba28015f481f056e.tar.bz2 |
KDesktopFile::isAuthorizedDesktopFile: reduce warning to info a log
Diffstat (limited to 'src/core/kdesktopfile.cpp')
-rw-r--r-- | src/core/kdesktopfile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/kdesktopfile.cpp b/src/core/kdesktopfile.cpp index 338692e6..408da286 100644 --- a/src/core/kdesktopfile.cpp +++ b/src/core/kdesktopfile.cpp @@ -162,7 +162,7 @@ bool KDesktopFile::isAuthorizedDesktopFile(const QString &path) return true; } - qCWarning(KCONFIG_CORE_LOG) << "Access to '" << path << "' denied, not owned by root, executable flag not set."; + qCInfo(KCONFIG_CORE_LOG) << "Access to '" << path << "' denied, not owned by root and executable flag not set."; return false; } |