aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/logger
diff options
context:
space:
mode:
authorarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-03-15 13:35:56 +0300
committerarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-03-15 13:35:56 +0300
commit094638589de6a6c9f91fad0005843fc1c1adc957 (patch)
tree7d55b9e950eb724da222548997547bf6710b1b58 /library/cpp/logger
parentbc921e787bed8a51a43725b78382e806800c44c1 (diff)
downloadydb-094638589de6a6c9f91fad0005843fc1c1adc957.tar.gz
intermediate changes
ref:ca7a95e8c9a9d780f96497136a152091d54e61b5
Diffstat (limited to 'library/cpp/logger')
-rw-r--r--library/cpp/logger/global/ut/ya.make15
-rw-r--r--library/cpp/logger/global/ya.make19
-rw-r--r--library/cpp/logger/init_context/ya.make20
-rw-r--r--library/cpp/logger/ut/ya.make20
-rw-r--r--library/cpp/logger/ya.make47
5 files changed, 0 insertions, 121 deletions
diff --git a/library/cpp/logger/global/ut/ya.make b/library/cpp/logger/global/ut/ya.make
deleted file mode 100644
index 8aea38906f..0000000000
--- a/library/cpp/logger/global/ut/ya.make
+++ /dev/null
@@ -1,15 +0,0 @@
-UNITTEST()
-
-OWNER(salmin)
-
-PEERDIR(
- library/cpp/logger/global
-)
-
-SRCDIR(library/cpp/logger/global)
-
-SRCS(
- rty_formater_ut.cpp
-)
-
-END()
diff --git a/library/cpp/logger/global/ya.make b/library/cpp/logger/global/ya.make
deleted file mode 100644
index 20eb361e72..0000000000
--- a/library/cpp/logger/global/ya.make
+++ /dev/null
@@ -1,19 +0,0 @@
-LIBRARY()
-
-OWNER(g:geosaas)
-
-PEERDIR(
- library/cpp/logger
-)
-
-IF (OS_WINDOWS)
- NO_WERROR()
-ENDIF()
-
-SRCS(
- common.cpp
- global.cpp
- rty_formater.cpp
-)
-
-END()
diff --git a/library/cpp/logger/init_context/ya.make b/library/cpp/logger/init_context/ya.make
deleted file mode 100644
index 9572a34c60..0000000000
--- a/library/cpp/logger/init_context/ya.make
+++ /dev/null
@@ -1,20 +0,0 @@
-OWNER(
- pg
- mvel
- g:util
- g:base
-)
-
-LIBRARY()
-
-PEERDIR(
- library/cpp/logger
- library/cpp/config
- library/cpp/yconf
-)
-SRCS(
- config.cpp
- yconf.cpp
-)
-
-END()
diff --git a/library/cpp/logger/ut/ya.make b/library/cpp/logger/ut/ya.make
deleted file mode 100644
index 2a461c1353..0000000000
--- a/library/cpp/logger/ut/ya.make
+++ /dev/null
@@ -1,20 +0,0 @@
-UNITTEST()
-
-OWNER(pg)
-
-PEERDIR(
- ADDINCL library/cpp/logger
- library/cpp/logger/init_context
- library/cpp/yconf/patcher
-)
-
-SRCDIR(library/cpp/logger)
-
-SRCS(
- log_ut.cpp
- element_ut.cpp
- rotating_file_ut.cpp
- composite_ut.cpp
-)
-
-END()
diff --git a/library/cpp/logger/ya.make b/library/cpp/logger/ya.make
deleted file mode 100644
index 00a5263cba..0000000000
--- a/library/cpp/logger/ya.make
+++ /dev/null
@@ -1,47 +0,0 @@
-OWNER(
- pg
- mvel
- g:util
- g:base
-)
-
-LIBRARY()
-
-GENERATE_ENUM_SERIALIZATION(priority.h)
-
-PEERDIR (
- library/cpp/json
-)
-
-SRCS(
- all.h
- backend.cpp
- backend_creator.cpp
- composite.cpp
- GLOBAL composite_creator.cpp
- element.cpp
- file.cpp
- GLOBAL file_creator.cpp
- filter.cpp
- filter_creator.cpp
- log.cpp
- null.cpp
- GLOBAL null_creator.cpp
- priority.h
- record.h
- rotating_file.cpp
- GLOBAL rotating_file_creator.cpp
- stream.cpp
- GLOBAL stream_creator.cpp
- sync_page_cache_file.cpp
- GLOBAL sync_page_cache_file_creator.cpp
- system.cpp
- GLOBAL system_creator.cpp
- thread.cpp
- thread_creator.cpp
- GLOBAL uninitialized_creator.cpp
-)
-
-END()
-
-RECURSE_FOR_TESTS(ut)