Skip to content

Commit 086bf00

Browse files
committed
Move print
1 parent 20233f1 commit 086bf00

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

post_processing/ci_plots.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,14 +255,15 @@ function make_plots_generic(
255255
else
256256
var_name = parse_var_attributes(var)
257257
end
258-
println("Plotting variable: $(var_name) in grid position: $(grid_pos)")
259258
if grid_pos > MAX_PLOTS_PER_PAGE
260259
println("Starting new page")
261260
fig = makefig()
262261
grid = gridlayout()
263262
grid_pos = 1
264263
end
265264

265+
println("Plotting variable: $(var_name) in grid position: $(grid_pos)")
266+
266267
plot_fn(grid[grid_pos], var, args...; kwargs...)
267268
grid_pos += 1
268269

0 commit comments

Comments
 (0)