diff options
author | ivanmorozov <ivanmorozov@yandex-team.com> | 2023-08-10 18:16:40 +0300 |
---|---|---|
committer | ivanmorozov <ivanmorozov@yandex-team.com> | 2023-08-10 19:21:59 +0300 |
commit | 94c58b86cb9d905597638de1ea0932c364d1819d (patch) | |
tree | e0089c24ee51f468775b1d91062d40b69c902bdb /library/cpp | |
parent | 1621188680076b9fafdb534e7bdf65b218f1775c (diff) | |
download | ydb-94c58b86cb9d905597638de1ea0932c364d1819d.tar.gz |
fix usage for non NActors namespace using
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/actors/core/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/actors/core/log.h b/library/cpp/actors/core/log.h index f9d3c54f978..3e171b9b730 100644 --- a/library/cpp/actors/core/log.h +++ b/library/cpp/actors/core/log.h @@ -529,7 +529,7 @@ namespace NActors { }; } -#define AFL_VERIFY(condition) if (condition); else TVerifyFormattedRecordWriter(#condition)("fline", TStringBuilder() << TStringBuf(__FILE__).RAfter(LOCSLASH_C) << ":" << __LINE__) +#define AFL_VERIFY(condition) if (condition); else NActors::TVerifyFormattedRecordWriter(#condition)("fline", TStringBuilder() << TStringBuf(__FILE__).RAfter(LOCSLASH_C) << ":" << __LINE__) #define ACTORS_FORMATTED_LOG(mPriority, mComponent) \ if (NActors::TlsActivationContext && !IS_LOG_PRIORITY_ENABLED(mPriority, mComponent));\ |