lib/cc/workspace/path_tree/dir_node.rb in codeclimate-0.69.0 vs lib/cc/workspace/path_tree/dir_node.rb in codeclimate-0.70.0
- old
+ new
@@ -40,10 +40,10 @@
if (entry = find_direct_child(head))
children[entry.basename.to_s.dup.freeze] ||= PathTree.node_for_pathname(entry)
children[entry.basename.to_s.dup.freeze].add(*tail)
else
- CLI.debug("Couldn't include because part of path doesn't exist.", path: File.join(root_path, head))
+ Analyzer.logger.debug("Couldn't include because part of path doesn't exist: #{File.join(root_path, head)}")
end
end
private