Skip to content

Commit 20233f1

Browse files
committed
Print what make_plots_generic is doing
1 parent b77efa2 commit 20233f1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

post_processing/ci_plots.jl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,15 @@ function make_plots_generic(
249249
grid_pos = 1
250250

251251
for var in vars
252+
# Print info about variable we're plotting and where
253+
if isa(var, Tuple)
254+
var_name = parse_var_attributes(var[1])
255+
else
256+
var_name = parse_var_attributes(var)
257+
end
258+
println("Plotting variable: $(var_name) in grid position: $(grid_pos)")
252259
if grid_pos > MAX_PLOTS_PER_PAGE
260+
println("Starting new page")
253261
fig = makefig()
254262
grid = gridlayout()
255263
grid_pos = 1

0 commit comments

Comments
 (0)