Drop Logging.jl (#205)

Julia 0.7 is having improved logging capabilities, we can drop
Logging.jl.
This commit is contained in:
Jukka Aho
2018-07-04 22:59:32 +03:00
committed by GitHub
parent 8bfda8c6e0
commit eb600c940e
10 changed files with 0 additions and 66 deletions
-3
View File
@@ -5,9 +5,6 @@ using JuliaFEM
using JuliaFEM.Preprocess
using JuliaFEM.Testing
using Logging
Logging.configure(level=DEBUG)
mesh = Mesh()
add_node!(mesh, 1, [0.0, 0.0])
add_node!(mesh, 2, [1.0, 0.0])
-1
View File
@@ -46,7 +46,6 @@ using JuliaFEM.Testing
a = geom[i]
b = strain[i]
c = stress[i]
debug("$a -> $b -> $c")
@test isapprox(b, [-1/3, -1/3, 1.0, 0.0, 0.0, 0.0])
@test isapprox(c, [0.0, 0.0, 288.0, 0.0, 0.0, 0.0])
end