Mercurial > dive4elements > river
view contrib/assimilate_alien_loggers.rb @ 8755:30b1ddadf275
(issue1801) Unify reference gauge finding code
The basic way as described in the method comment of the
determineRefGauge method is now used in the WINFOArtifact,
MainValuesService and RiverUtils.getGauge method.
RiverUtils.getGauge previously just returned the first
gauge found. While this is now a behavior change I believe
that it is always more correct then the undeterministic
behavior of the previous implmenentation.
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Wed, 24 Jun 2015 14:07:26 +0200 |
parents | 8dd89da79eaa |
children |
line wrap: on
line source
# run like ruby -i -p assimilate_alien_loggers.rb FILES(or stdin) # This will replace in-place and will result in wrong getLogger # statements in certain inner-class scenarios! Be careful. $last_class if $_ =~ /class ([a-zA-Z0-9]+)/ $last_class = "#{$1}.class" end if $_ =~ /getLogger/ gsub(/getLogger[ ]*\(.*\)/, "getLogger(#{$last_class})") end