Skip to content

Commit

Permalink
Fix typo in debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
outspace committed Sep 14, 2023
1 parent c19161e commit 369a72d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/daemon/daemonlocalserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ QString DaemonLocalServer::daemonPath() const {
}

if (dir.exists("amneziavpn")) {
logger.debug() << "/var/run/amnezia seems to be usable";
logger.debug() << "/var/run/amneziavpn seems to be usable";
return VAR_PATH;
}

if (!dir.mkdir("amneziavpn")) {
logger.warning() << "Failed to create /var/run/amnezia";
logger.warning() << "Failed to create /var/run/amneziavpn";
return TMP_PATH;
}

Expand Down

0 comments on commit 369a72d

Please sign in to comment.