Skip to content

Commit ad25c12

Browse files
authored
Merge pull request #294 from JuliaRobotics/hotfix/20Q1/travisbug#293
Fix for travis maximum log exceeded in iif
2 parents 9664ff9 + 8c8bf30 commit ad25c12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/services/CompareUtils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ end
128128

129129
function compareAll(Al::T, Bl::T; show::Bool=true, skip::Vector{Symbol}=Symbol[])::Bool where T
130130
@debug "Comparing types $T:"
131-
@debug " Al = $Al"
132-
@debug " Bl = $Bl"
131+
# @debug " Al = $Al"
132+
# @debug " Bl = $Bl"
133133
!compareFields(Al, Bl, show=show, skip=skip) && return false
134134
for field in fieldnames(T)
135135
field in skip && continue

0 commit comments

Comments
 (0)