See https://github.com/comp500/fabric-serverside-mods for the latest mod list!
(draft; work in progress)
See also:
- Compilers
- Program analysis:
- Dynamic analysis - instrumentation, translation, sanitizers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static org.slf4j.Logger toSlf4j(final Logger logger) | |
| { | |
| return new org.slf4j.Logger() | |
| { | |
| @Override | |
| public String getName() | |
| { | |
| return logger.getName(); | |
| } |