More logging tweaks, including some aimed at userdev.

`forge.logging.markers=<LIST OF MARKERS>` will enable markers.

Signed-off-by: cpw <cpw+github@weeksfamily.ca>
This commit is contained in:
cpw 2019-01-27 00:06:57 -05:00
parent b1cd7fcee0
commit 5422d1342c

View file

@ -33,6 +33,10 @@ minecraft {
// these can be tweaked, removed, or duplicated as needed. // these can be tweaked, removed, or duplicated as needed.
runs { runs {
client = { client = {
// recommended logging data for a userdev environment
systemProperties 'forge.logging.markers': 'SCAN,REGISTRIES,REGISTRYDUMP'
// recommended logging level for the console
systemProperties 'forge.logging.console.level': 'debug'
workingDirectory project.file('run').canonicalPath workingDirectory project.file('run').canonicalPath
source sourceSets.main source sourceSets.main
} }