Skip to content

Commit cd4c6d2

Browse files
authored
Make runic happy
1 parent 1e3ee49 commit cd4c6d2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/debug.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# debug functionality
22

3-
function isdebug(group, mod=CUDA)
3+
function isdebug(group, mod = CUDA)
44
level = Base.CoreLogging.Debug
55
logger = Base.CoreLogging.current_logger_for_env(level, group, mod)
66
# TODO: Which id to choose here instead of 0?
7-
logger !== nothing && Base.CoreLogging.shouldlog(logger, level, mod, group, 0)
7+
return logger !== nothing && Base.CoreLogging.shouldlog(logger, level, mod, group, 0)
88
end

0 commit comments

Comments
 (0)