Skip to content

Commit 3d91a73

Browse files
committed
Remove print statements
1 parent f4138ea commit 3d91a73

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

post_processing/ci_plots.jl

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -249,21 +249,12 @@ 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
258252
if grid_pos > MAX_PLOTS_PER_PAGE
259-
println("Starting new page")
260253
fig = makefig()
261254
grid = gridlayout()
262255
grid_pos = 1
263256
end
264257

265-
println("Plotting variable: $(var_name) in grid position: $(grid_pos)")
266-
267258
plot_fn(grid[grid_pos], var, args...; kwargs...)
268259
grid_pos += 1
269260

0 commit comments

Comments
 (0)