Python tool - converting java system.out.print to SLF4J
requirement
convert all java system.out to SLF4J
solution
read each java source file, add import, replace system.out.print(...)
to logger.info(...)
Python code:
- 2016-09-20
edit