From 5bc914605deca7933760dcbbfaf52a535261ffa1 Mon Sep 17 00:00:00 2001 From: Alexander Barth Date: Fri, 11 Oct 2024 14:39:37 +0200 Subject: [PATCH] debug info for nc_create --- src/netcdf_c.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/netcdf_c.jl b/src/netcdf_c.jl index 6529ab9b..43d54106 100644 --- a/src/netcdf_c.jl +++ b/src/netcdf_c.jl @@ -252,6 +252,7 @@ end # end function nc_create(path,cmode::Integer) + @debug "nc_create $path with mode $cmode" ncidp = Ref(Cint(0)) check(ccall((:nc_create,libnetcdf),Cint,(Cstring,Cint,Ptr{Cint}),path,cmode,ncidp)) return ncidp[]