Skip to content

Commit 52297a0

Browse files
committed
2 parents 222292b + 08f046c commit 52297a0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ext/ArchGDALExt/archgdaldataset.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ end
375375

376376

377377
function __init__()
378-
@info "new driver key :gdal, updating backendlist."
378+
@debug "new driver key :gdal, updating backendlist."
379379
YAB.backendlist[:gdal] = GDALDataset
380380
push!(YAB.backendregex,r".tif$"=>GDALDataset)
381381
push!(YAB.backendregex,r".gtif$"=>GDALDataset)

ext/NetCDFExt.jl

+1-1
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

+1-1
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)