Skip to content

Commit b192037

Browse files
committed
replace @info by @debug
1 parent 9ddb084 commit b192037

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ext/ArchGDALExt/archgdaldataset.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ allow_missings(::Type{<:GDALDataset}) = false
236236
allow_missings(::GDALDataset) = false
237237

238238
function __init__()
239-
@info "new driver key :gdal, updating backendlist."
239+
@debug "new driver key :gdal, updating backendlist."
240240
YAB.backendlist[:gdal] = GDALDataset
241241
push!(YAB.backendregex,r".tif$"=>GDALDataset)
242242
push!(YAB.backendregex,r".gtif$"=>GDALDataset)

ext/NetCDFExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ YAB.allow_missings(::Type{<:NetCDFDataset}) = false
107107
YAB.allow_missings(::NetCDFDataset) = false
108108

109109
function __init__()
110-
@info "new driver key :netcdf, updating backendlist."
110+
@debug "new driver key :netcdf, updating backendlist."
111111
YAB.backendlist[:netcdf] = NetCDFDataset
112112
push!(YAB.backendregex,r".nc$"=>NetCDFDataset)
113113
end

ext/ZarrExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module ZarrExt
55
export ZarrDataset
66

77
function __init__()
8-
@info "new driver key :zarr, updating backendlist."
8+
@debug "new driver key :zarr, updating backendlist."
99
YAB.backendlist[:zarr] = ZarrDataset
1010
push!(YAB.backendregex, r"(.zarr$)|(.zarr/$)"=>ZarrDataset)
1111
end

0 commit comments

Comments
 (0)