aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorivanmorozov <ivanmorozov@yandex-team.com>2022-10-21 19:30:40 +0300
committerivanmorozov <ivanmorozov@yandex-team.com>2022-10-21 19:30:40 +0300
commitf9577ba08e591a72dcc61b5fb8dfc72d8ef524fa (patch)
tree3dda10ad72b17359a8ce0c5e50e0366e6c61e6a1
parenta9173166e8bb28590933a3bbc3d1e934c5905f6e (diff)
downloadydb-f9577ba08e591a72dcc61b5fb8dfc72d8ef524fa.tar.gz
fix namespace usage for tls variable
-rw-r--r--library/cpp/actors/core/log.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/library/cpp/actors/core/log.h b/library/cpp/actors/core/log.h
index 34cab44af9..4397ca821b 100644
--- a/library/cpp/actors/core/log.h
+++ b/library/cpp/actors/core/log.h
@@ -393,13 +393,13 @@ namespace NActors {
#define ACTORS_LOG_STREAM_ALERT(actorCtxOrSystem, component) ACTORS_LOG_STREAM(actorCtxOrSystem, NActors::NLog::PRI_ALERT, component)
#define ACTORS_LOG_STREAM_EMERG(actorCtxOrSystem, component) ACTORS_LOG_STREAM(actorCtxOrSystem, NActors::NLog::PRI_EMERG, component)
-#define ALS_TRACE(component) ACTORS_LOG_STREAM_TRACE(TActivationContext::AsActorContext(), component)
-#define ALS_DEBUG(component) ACTORS_LOG_STREAM_DEBUG(TActivationContext::AsActorContext(), component)
-#define ALS_INFO(component) ACTORS_LOG_STREAM_INFO(TActivationContext::AsActorContext(), component)
-#define ALS_NOTICE(component) ACTORS_LOG_STREAM_NOTICE(TActivationContext::AsActorContext(), component)
-#define ALS_WARN(component) ACTORS_LOG_STREAM_WARN(TActivationContext::AsActorContext(), component)
-#define ALS_ERROR(component) ACTORS_LOG_STREAM_ERROR(TActivationContext::AsActorContext(), component)
-#define ALS_CRIT(component) ACTORS_LOG_STREAM_CRIT(TActivationContext::AsActorContext(), component)
-#define ALS_ALERT(component) ACTORS_LOG_STREAM_ALERT(TActivationContext::AsActorContext(), component)
-#define ALS_EMERG(component) ACTORS_LOG_STREAM_EMERG(TActivationContext::AsActorContext(), component)
+#define ALS_TRACE(component) ACTORS_LOG_STREAM_TRACE(NActors::TActivationContext::AsActorContext(), component)
+#define ALS_DEBUG(component) ACTORS_LOG_STREAM_DEBUG(NActors::TActivationContext::AsActorContext(), component)
+#define ALS_INFO(component) ACTORS_LOG_STREAM_INFO(NActors::TActivationContext::AsActorContext(), component)
+#define ALS_NOTICE(component) ACTORS_LOG_STREAM_NOTICE(NActors::TActivationContext::AsActorContext(), component)
+#define ALS_WARN(component) ACTORS_LOG_STREAM_WARN(NActors::TActivationContext::AsActorContext(), component)
+#define ALS_ERROR(component) ACTORS_LOG_STREAM_ERROR(NActors::TActivationContext::AsActorContext(), component)
+#define ALS_CRIT(component) ACTORS_LOG_STREAM_CRIT(NActors::TActivationContext::AsActorContext(), component)
+#define ALS_ALERT(component) ACTORS_LOG_STREAM_ALERT(NActors::TActivationContext::AsActorContext(), component)
+#define ALS_EMERG(component) ACTORS_LOG_STREAM_EMERG(NActors::TActivationContext::AsActorContext(), component)