Skip to content

Commit

Permalink
Fix common server test
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementKunz committed Oct 16, 2024
1 parent 1c41ced commit 14e6cf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcommonserver/io/iohelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ bool IoHelper::tempDirectoryPath(SyncPath &directoryPath, IoError &ioError) noex
ioError = stdError2ioError(ec);

if (ioError != IoError::Success) {
LOG_ERROR(logger(), "Impossible to retrieve tmp directory: " << ioError2StdString(ioError).c_str());
if (Log::isSet()) LOG_ERROR(logger(), "Impossible to retrieve tmp directory: " << ioError2StdString(ioError).c_str());
return false;
}
return true;
Expand Down

0 comments on commit 14e6cf6

Please sign in to comment.