From 87646bdbe92e34aa128272e7cb394680096b4488 Mon Sep 17 00:00:00 2001 From: JoostBuitink <44062204+JoostBuitink@users.noreply.github.com> Date: Mon, 6 Nov 2023 11:10:36 +0100 Subject: [PATCH] fix logging formatting lake csv files --- src/reservoir_lake.jl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/reservoir_lake.jl b/src/reservoir_lake.jl index 303c98d14..d599573ee 100644 --- a/src/reservoir_lake.jl +++ b/src/reservoir_lake.jl @@ -376,14 +376,16 @@ function initialize_lake(config, nc, inds_riv, nriv, pits, Δt) if lake_storfunc[i] == 2 csv_path = joinpath(path, "lake_sh_$lakeloc.csv") @info( - "read a storage curve from CSV file $csv_path, for lake location $lakeloc" + "Read a storage curve from CSV file `$csv_path`, for lake location `$lakeloc`" ) sh[i] = read_sh_csv(csv_path) end if lake_outflowfunc[i] == 1 csv_path = joinpath(path, "lake_hq_$lakeloc.csv") - @info("read a rating curve from CSV file $csv_path, for lake location $lakeloc") + @info( + "Read a rating curve from CSV file `$csv_path`, for lake location `$lakeloc`" + ) hq[i] = read_hq_csv(csv_path) end