Skip to content

Commit fd4c4f0

Browse files
committed
Add more @info logging (to help with debugging issue #266
Cross-ref: #266
1 parent ae21ab7 commit fd4c4f0

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

src/utilities/new_versions.jl

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ function continue_with_pr(dep::DepInfo, bump_compat_containing_equality_specifie
180180
dep.version_spec,
181181
dep.package.name,
182182
dep,
183+
dep.version_verbatim,
183184
)
184185

185186
return false
@@ -191,17 +192,28 @@ function continue_with_pr(dep::DepInfo, bump_compat_containing_equality_specifie
191192
dep.version_verbatim,
192193
dep.package.name,
193194
dep,
195+
dep.latest_version,
196+
dep.version_spec,
194197
)
195198

196199
return false
197200
elseif isnothing(dep.latest_version)
198201
@error(
199-
"The dependency was not found in any of the registries", dep.package.name, dep,
202+
"The dependency was not found in any of the registries", dep.package.name, dep, dep.latest_version,
200203
)
201204

202205
return false
203206
end
204207

208+
@info(
209+
"continue_with_pr = true",
210+
dep.latest_version,
211+
dep.version_spec,
212+
dep.package.name,
213+
dep,
214+
dep.version_verbatim,
215+
)
216+
205217
return true
206218
end
207219

0 commit comments

Comments
 (0)