├── .classpath ├── .gitignore ├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── CONTRIBUTING.md ├── README.md ├── license.txt ├── pom.xml ├── project.yaml └── src └── com └── esotericsoftware └── minlog └── Log.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsotericSoftware/minlog/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Temporary Files 2 | *~ 3 | .*.swp 4 | .DS_STORE 5 | 6 | bin/ 7 | target/ 8 | .idea/ 9 | *.iml 10 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsotericSoftware/minlog/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=Cp1252 3 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsotericSoftware/minlog/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsotericSoftware/minlog/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsotericSoftware/minlog/HEAD/README.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsotericSoftware/minlog/HEAD/license.txt -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsotericSoftware/minlog/HEAD/pom.xml -------------------------------------------------------------------------------- /project.yaml: -------------------------------------------------------------------------------- 1 | version: 1.2 2 | -------------------------------------------------------------------------------- /src/com/esotericsoftware/minlog/Log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsotericSoftware/minlog/HEAD/src/com/esotericsoftware/minlog/Log.java --------------------------------------------------------------------------------