Mercurial > dive4elements > river
changeset 7539:8dd89da79eaa
Added spooky ruby script to get started fixing logger instances of wrong classes.
author | Felix Wolfsteller <felix.wolfsteller@intevation.de> |
---|---|
date | Fri, 08 Nov 2013 10:22:32 +0100 |
parents | 06ebfc33578d |
children | 9344aa0fb021 |
files | contrib/assimilate_alien_loggers.rb |
diffstat | 1 files changed, 11 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/assimilate_alien_loggers.rb Fri Nov 08 10:22:32 2013 +0100 @@ -0,0 +1,11 @@ +# 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