Skip to content

Commit

Permalink
Drop Logging.jl
Browse files Browse the repository at this point in the history
Julia 0.7 is having improved logging abilities so we can safely drop
this.
  • Loading branch information
ahojukka5 committed Jul 4, 2018
1 parent 90fcf2c commit 5ced982
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
julia 0.6
HDF5
Logging
1 change: 0 additions & 1 deletion src/AsterReader.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# License is MIT: see https://github.com/JuliaFEM/AsterReader.jl/blob/master/LICENSE

module AsterReader
using Logging
using HDF5
include("read_aster_mesh.jl")
include("read_aster_results.jl")
Expand Down
7 changes: 0 additions & 7 deletions src/read_aster_mesh.jl
Original file line number Diff line number Diff line change
Expand Up @@ -180,15 +180,8 @@ function aster_read_mesh(fn, mesh_name=nothing)
mesh["surface_sets"] = Dict{String, Vector{Tuple{Int, Symbol}}}()
mesh["surface_types"] = Dict{String, Symbol}()

debug("Code Aster .med reader info:")
elsets = get_element_sets(med, mesh_name)
for (k,v) in elsets
debug("ELSET $k => $v")
end
nsets = get_node_sets(med, mesh_name)
for (k,v) in nsets
debug("NSET $k => $v")
end
for (nid, (nset_, coords)) in get_nodes(med, nsets, mesh_name)
mesh["nodes"][nid] = coords
for nset in nset_
Expand Down

0 comments on commit 5ced982

Please sign in to comment.