Signed-off-by: Tor Lillqvist <tml@collabora.com>
Change-Id: I6edf03cb46f80a1f88448718d9a2bba110ecaeb3
This commit is contained in:
Tor Lillqvist 2021-08-20 14:04:18 +03:00 committed by Tor Lillqvist
parent ed5569da30
commit 3e0e9fbe7d

View file

@ -85,13 +85,13 @@ class TraceFileWriter
{
public:
TraceFileWriter(const std::string& path,
const bool recordOugoing,
const bool recordOutgoing,
const bool compress,
const bool takeSnapshot,
const std::vector<std::string>& filters) :
_epochStart(std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::system_clock::now()
.time_since_epoch()).count()),
_recordOutgoing(recordOugoing),
_recordOutgoing(recordOutgoing),
_compress(compress),
_takeSnapshot(takeSnapshot),
_path(Poco::Path(path).parent().toString()),