Skip to content

Commit

Permalink
OrcLib: Log: FileSink: change default memory buffer to 16384
Browse files Browse the repository at this point in the history
  • Loading branch information
fabienfl-orc committed Feb 10, 2021
1 parent 5270dfe commit 15ea817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OrcLib/Log/Sink/FileSink.h
Expand Up @@ -34,7 +34,7 @@ class FileSink final : public spdlog::sinks::base_sink<Mutex>
using SpdlogFileSink = spdlog::sinks::basic_file_sink_st;
using MemorySink = MemorySink<std::vector<uint8_t>, spdlog::details::null_mutex>;

const size_t kMemorySinkSize = 4096;
const size_t kMemorySinkSize = 16384;

FileSink()
: m_fileSink()
Expand Down

0 comments on commit 15ea817

Please sign in to comment.