diff --git a/src/util.jl b/src/util.jl index a8c07e6..1d9908c 100644 --- a/src/util.jl +++ b/src/util.jl @@ -19,8 +19,8 @@ end function build_log(pkg_name, add_log, using_log, full_log) function trunc_section(s) l = split(s,"\n") - if length(l) >= 55 - return join(vcat(l[1:20],{"... truncated ..."},l[end-30:end]),"\n") + if length(l) >= 75 + return join(vcat(l[1:20],{"... truncated ..."},l[end-50:end]),"\n") end return s end @@ -32,4 +32,4 @@ function build_log(pkg_name, add_log, using_log, full_log) log_str *= trunc_section(full_log) log_str *= "\n>>> end of log" return log_str -end \ No newline at end of file +end