Skip to content

Commit f22c538

Browse files
authored
logging: Default disable metrics, enable all_task_deps
1 parent 1ee73a0 commit f22c538

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/utils/logging.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ Extra events:
1919
- `tasktochunk::Bool`: Enables reporting of DTask-to-Chunk mappings
2020
- `profile::Bool`: Enables profiling of task execution; not currently recommended, as it adds significant overhead
2121
"""
22-
function enable_logging!(;metrics::Bool=true,
22+
function enable_logging!(;metrics::Bool=false,
2323
timeline::Bool=false,
24-
all_task_deps::Bool=false,
24+
all_task_deps::Bool=true,
2525
tasknames::Bool=true,
2626
taskfuncnames::Bool=false,
27-
taskdeps::Bool=true,
27+
taskdeps::Bool=false,
2828
taskargs::Bool=false,
2929
taskargmoves::Bool=false,
3030
taskresult::Bool=false,

0 commit comments

Comments
 (0)