Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ext/ArchGDALExt/archgdaldataset.jl
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ allow_missings(::Type{<:GDALDataset}) = false
allow_missings(::GDALDataset) = false

function __init__()
@info "new driver key :gdal, updating backendlist."
@debug "new driver key :gdal, updating backendlist."
YAB.backendlist[:gdal] = GDALDataset
push!(YAB.backendregex,r".tif$"=>GDALDataset)
push!(YAB.backendregex,r".gtif$"=>GDALDataset)
Expand Down
2 changes: 1 addition & 1 deletion ext/NetCDFExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ YAB.allow_missings(::Type{<:NetCDFDataset}) = false
YAB.allow_missings(::NetCDFDataset) = false

function __init__()
@info "new driver key :netcdf, updating backendlist."
@debug "new driver key :netcdf, updating backendlist."
YAB.backendlist[:netcdf] = NetCDFDataset
push!(YAB.backendregex,r".nc$"=>NetCDFDataset)
end
Expand Down
2 changes: 1 addition & 1 deletion ext/ZarrExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module ZarrExt
export ZarrDataset

function __init__()
@info "new driver key :zarr, updating backendlist."
@debug "new driver key :zarr, updating backendlist."
YAB.backendlist[:zarr] = ZarrDataset
push!(YAB.backendregex, r"(.zarr$)|(.zarr/$)"=>ZarrDataset)
end
Expand Down
Loading