lib/relaton_ieee/ieee_bibliography.rb in relaton-ieee-1.16.1 vs lib/relaton_ieee/ieee_bibliography.rb in relaton-ieee-1.16.2
- old
+ new
@@ -36,16 +36,16 @@
#
# @return [Hash, NilClass] returns { ret: RelatonBib::BibliographicItem }
# if document is found else returns NilClass
#
def get(code, _year = nil, _opts = {}) # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
- Util.warn "(#{code}) fetching..."
+ Util.warn "(#{code}) Fetching from Relaton repository ..."
item = search(code)
if item
- Util.warn "(#{code}) found `#{item.docidentifier.first.id}`"
+ Util.warn "(#{code}) Found: `#{item.docidentifier.first.id}`"
item
else
- Util.warn "(#{code}) not found"
+ Util.warn "(#{code}) Not found."
nil
end
end
end
end