Skip to content

Commit 8e84a78

Browse files
committed
fix 32-bit
1 parent 6d92532 commit 8e84a78

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/verbosity.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,35 +27,35 @@ For convenience, the
2727
wrap the current logger with a level/verbosity filter while `f` is executed.
2828
"""
2929

30-
macro debugv(verbosity::Int64, msg, exs...)
30+
macro debugv(verbosity::Int, msg, exs...)
3131
return restore_callsite_source_position!(
3232
esc(:($Base.@debug $msg _group=$verbosity $(exs...))),
3333
__source__,
3434
)
3535
end
3636

37-
macro infov(verbosity::Int64, msg, exs...)
37+
macro infov(verbosity::Int, msg, exs...)
3838
return restore_callsite_source_position!(
3939
esc(:($Base.@info $msg _group=$verbosity $(exs...))),
4040
__source__,
4141
)
4242
end
4343

44-
macro warnv(verbosity::Int64, msg, exs...)
44+
macro warnv(verbosity::Int, msg, exs...)
4545
return restore_callsite_source_position!(
4646
esc(:($Base.@warn $msg _group=$verbosity $(exs...))),
4747
__source__,
4848
)
4949
end
5050

51-
macro errorv(verbosity::Int64, msg, exs...)
51+
macro errorv(verbosity::Int, msg, exs...)
5252
return restore_callsite_source_position!(
5353
esc(:($Base.@error $msg _group=$verbosity $(exs...))),
5454
__source__,
5555
)
5656
end
5757

58-
macro logmsgv(verbosity::Int64, level, msg, exs...)
58+
macro logmsgv(verbosity::Int, level, msg, exs...)
5959
return restore_callsite_source_position!(
6060
esc(:($Base.@logmsg $level $msg _group=$verbosity $(exs...))),
6161
__source__,

0 commit comments

Comments
 (0)