Skip to content

Commit f769b56

Browse files
committed
disable debugging tricks
1 parent 8a55408 commit f769b56

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stdlib/public/Concurrency/TaskGroup.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464

6565
using namespace swift;
6666

67-
#if 1
67+
#if 0
6868
#define SWIFT_TASK_GROUP_DEBUG_LOG_ENABLED 1
6969
#define SWIFT_TASK_GROUP_DEBUG_LOG(group, fmt, ...) \
7070
fprintf(stderr, "[%#lx] [%s:%d][group(%p%s)] (%s) " fmt "\n", \

stdlib/public/runtime/Backtrace.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ bool isPrivileged() {
267267
} // namespace
268268

269269
BacktraceInitializer::BacktraceInitializer() {
270-
const char *backtracing = "enable=yes,color=yes";// swift::runtime::environment::SWIFT_BACKTRACE();
270+
const char *backtracing = swift::runtime::environment::SWIFT_BACKTRACE();
271271

272272
// Force off for setuid processes.
273273
if (isPrivileged()) {

0 commit comments

Comments
 (0)