Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/utils/logging.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ Extra events:
- `tasktochunk::Bool`: Enables reporting of DTask-to-Chunk mappings
- `profile::Bool`: Enables profiling of task execution; not currently recommended, as it adds significant overhead
"""
function enable_logging!(;metrics::Bool=true,
function enable_logging!(;metrics::Bool=false,
timeline::Bool=false,
all_task_deps::Bool=false,
all_task_deps::Bool=true,
tasknames::Bool=true,
taskfuncnames::Bool=false,
taskdeps::Bool=true,
taskdeps::Bool=false,
taskargs::Bool=false,
taskargmoves::Bool=false,
taskresult::Bool=false,
Expand Down