aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/testlib
diff options
context:
space:
mode:
authoralexvru <alexvru@ydb.tech>2023-07-08 15:41:11 +0300
committeralexvru <alexvru@ydb.tech>2023-07-08 15:41:11 +0300
commit9f0b257a72fa295d1f62c9b6581770703fed052f (patch)
tree1f0c28a24dbf12971922ec283aac96acda4d62e1 /library/cpp/actors/testlib
parent69560a9e7f318c1a519da1a91faf84855d3b1050 (diff)
downloadydb-9f0b257a72fa295d1f62c9b6581770703fed052f.tar.gz
Move LOGGER component from kikimr-specific services to actorlib common ones KIKIMR-11082
Diffstat (limited to 'library/cpp/actors/testlib')
-rw-r--r--library/cpp/actors/testlib/test_runtime.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/actors/testlib/test_runtime.cpp b/library/cpp/actors/testlib/test_runtime.cpp
index 92745747675..dad62ca6978 100644
--- a/library/cpp/actors/testlib/test_runtime.cpp
+++ b/library/cpp/actors/testlib/test_runtime.cpp
@@ -513,7 +513,7 @@ namespace NActors {
void TTestActorRuntimeBase::InitNode(TNodeDataBase* node, size_t nodeIndex) {
const NActors::TActorId loggerActorId = NActors::TActorId(FirstNodeId + nodeIndex, "logger");
- node->LogSettings = new NActors::NLog::TSettings(loggerActorId, 410 /* NKikimrServices::LOGGER */,
+ node->LogSettings = new NActors::NLog::TSettings(loggerActorId, NActorsServices::LOGGER,
NActors::NLog::PRI_WARN, NActors::NLog::PRI_WARN, 0);
node->LogSettings->SetAllowDrop(false);
node->LogSettings->SetThrottleDelay(TDuration::Zero());