Skip to content

Commit

Permalink
Logging typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Bill-hbrhbr committed Nov 22, 2024
1 parent c5d551d commit 4dc14f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ auto Compressor::flush_without_ending_frame() -> void {
auto const flush_result{ZSTD_flushStream(m_compression_stream, &m_compressed_stream_block)};
if (ZSTD_error_no_error != ZSTD_getErrorCode(flush_result)) {
SPDLOG_ERROR(
"streaming_compression::zstd::Compressor: ZSTD_compressStream2() error: {}",
"streaming_compression::zstd::Compressor: ZSTD_flushStream() error: {}",
ZSTD_getErrorName(flush_result)
);
throw OperationFailed(ErrorCode_Failure, __FILENAME__, __LINE__);
Expand Down

0 comments on commit 4dc14f8

Please sign in to comment.