Mercurial > dive4elements > river
view contrib/find_alien_loggers.rb @ 9657:a79881a892c9
Importer (s/u-info) extensions: depth-evolution: corrected directory name Bezug_aktueller_GlW,
detecting and logging of wrong units, then cancelling,
various checks of the plausibility of the meta data year values and cancelling in case of errors,
detecting and logging missing change values, skipping those lines
author | mschaefer |
---|---|
date | Mon, 23 Mar 2020 15:26:50 +0100 |
parents | 06ebfc33578d |
children |
line wrap: on
line source
#!/usr/bin/env ruby # encoding: UTF-8 # Use like # grep -ri getLogger src/ | ruby find_alien_loggers.rb # Prints guesses about java source files where wrong logger is used to stderr. ARGF.each_line do |line| module_name = line.scan(/\/([^\/]*)\.java/) next if module_name.nil? next if module_name[0].nil? module_name = module_name[0][0] STDERR.puts line unless line.include?("#{module_name}.class") end