Fix mdk properties - now the mdk offers default console debug logging
with various useful channels for development enabled. Signed-off-by: cpw <cpw+github@weeksfamily.ca>
This commit is contained in:
parent
5422d1342c
commit
e9d087b6f3
1 changed files with 7 additions and 2 deletions
|
@ -34,14 +34,19 @@ minecraft {
|
|||
runs {
|
||||
client = {
|
||||
// recommended logging data for a userdev environment
|
||||
systemProperties 'forge.logging.markers': 'SCAN,REGISTRIES,REGISTRYDUMP'
|
||||
properties 'forge.logging.markers': 'SCAN,REGISTRIES,REGISTRYDUMP'
|
||||
// recommended logging level for the console
|
||||
systemProperties 'forge.logging.console.level': 'debug'
|
||||
properties 'forge.logging.console.level': 'debug'
|
||||
workingDirectory project.file('run').canonicalPath
|
||||
source sourceSets.main
|
||||
}
|
||||
server = {
|
||||
// recommended logging data for a userdev environment
|
||||
properties 'forge.logging.markers': 'SCAN,REGISTRIES,REGISTRYDUMP'
|
||||
// recommended logging level for the console
|
||||
properties 'forge.logging.console.level': 'debug'
|
||||
workingDirectory project.file('run').canonicalPath
|
||||
source sourceSets.main
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue