Skip to content

Commit

Permalink
chore(clp-s): Adjust directory creation failure log message during co…
Browse files Browse the repository at this point in the history
…mpression. (#684)
  • Loading branch information
gibber9809 authored Jan 21, 2025
1 parent a8551a0 commit 09bab5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/core/src/clp_s/ArchiveWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ void ArchiveWriter::open(ArchiveWriterOption const& option) {
SPDLOG_ERROR(
"Failed to create archive directory \"{}\" - ({}) {}",
m_archive_path,
ec.message(),
ec.value()
ec.value(),
ec.message()
);
throw OperationFailed(ErrorCodeFailure, __FILENAME__, __LINE__);
}
Expand Down

0 comments on commit 09bab5a

Please sign in to comment.