Skip to content

Commit fc99f37

Browse files
committed
Disable debugging output
1 parent eb0f9f0 commit fc99f37

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ keywords = ["Packages", "API", "Modules"]
44
license = "MIT"
55
desc = "Macro to help manage module and package APIs"
66
authors = ["ScottPJones <[email protected]>"]
7-
version = "1.0.0"
7+
version = "1.0.1"
88

99
[deps]
1010

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
environment:
22
matrix:
33
- julia_version: 1.0
4-
- julia_version: 1.1
4+
- julia_version: 1
55
- julia_version: latest
66

77
platform:

src/ModuleInterfaceTools.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ function _api_reexport(curmod, modules)
293293
api = get_api(curmod, mod)
294294
l1, l2, l3 = getfield(api, :modules), getfield(api, :public), getfield(api, :public!)
295295
if !(isempty(l1) && isempty(l2) && isempty(l3))
296-
println("Reexport: api = $api:$l1,$l2,$l3")
296+
debug[] && println("Reexport: api = $api:$l1,$l2,$l3")
297297
m_eval(curmod, Expr( :export, l1..., l2..., l3... ))
298298
end
299299
end

0 commit comments

Comments
 (0)