@info doesn't show whole vector in task

I added this @info message to a function which is called from a task:

@info "Blending" file=basename(blendFileName) streamNum blend=OffsetArrays.no_offset_view(blend)

I get this output:

┌ Info: Blending
│   file = "ggCoH+Wzbip_pLYvLxt_4Nj4wdjwLLgDqTvlflcc1LY"
│   streamNum = 0
│   blend =
│    6-element Vector{Int64}:
│     0
└     ⋮

I then typed this in the REPL and got this output:

julia> blend=[2121,2828,7474,6262,9797,6767]
julia> @info "aoeu" blend
┌ Info: aoeu
│   blend =
│    6-element Vector{Int64}:
│     2121
│     2828
│     7474
│     6262
│     9797
└     6767

Why does @info show the whole vector when called from the REPL, but not when called from a task? And is it possible to show the vector on one line?