summaryrefslogtreecommitdiffstats
path: root/library/cpp/threading/task_scheduler/task_scheduler.cpp
diff options
context:
space:
mode:
authorhalin-george <[email protected]>2022-02-10 16:50:07 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:50:07 +0300
commit811c91d683d6123a2aa69baa10b30184f5e1204d (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/threading/task_scheduler/task_scheduler.cpp
parent7c7a0655bcf00449b1fcacc2c658cc4d5c3aca7b (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/threading/task_scheduler/task_scheduler.cpp')
-rw-r--r--library/cpp/threading/task_scheduler/task_scheduler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/threading/task_scheduler/task_scheduler.cpp b/library/cpp/threading/task_scheduler/task_scheduler.cpp
index fc6c6c30823..174dde4bf75 100644
--- a/library/cpp/threading/task_scheduler/task_scheduler.cpp
+++ b/library/cpp/threading/task_scheduler/task_scheduler.cpp
@@ -1,4 +1,4 @@
-#include "task_scheduler.h"
+#include "task_scheduler.h"
#include <util/system/thread.h>
#include <util/string/cast.h>
@@ -44,7 +44,7 @@ TTaskScheduler::~TTaskScheduler() {
try {
Stop();
} catch (...) {
- Cdbg << "task scheduled destruction error: " << CurrentExceptionMessage();
+ Cdbg << "task scheduled destruction error: " << CurrentExceptionMessage();
}
}
@@ -201,7 +201,7 @@ void TTaskScheduler::WorkerFunc(TWorkerThread* thread) {
try {
repeat = toDo->Process();
} catch (...) {
- Cdbg << "task scheduler error: " << CurrentExceptionMessage();
+ Cdbg << "task scheduler error: " << CurrentExceptionMessage();
}
}