croconut / godot-tester

A Github Action to handle testing Godot applications with GUT
MIT License
36 stars 14 forks source link

Feature Request: Log level #16

Closed Lyaaaaaaaaaaaaaaa closed 2 years ago

Lyaaaaaaaaaaaaaaa commented 2 years ago

It could be very useful to set the level of logs in the workflow file like you can do in Godot. image When there is no error, log level at 1 is enough, but if something fails, having logs level to 2 or 3 can come handy.

croconut commented 2 years ago

i'll add in the ability to read in a config file which includes options for things like this. after i do that you'll want to refer to the GUT docs to set that up correctly.

croconut commented 2 years ago

oh this is already going to be read by default. i'll double check for compatibility with this but you should just need to create a config file as described here: https://github.com/bitwes/Gut/wiki/Command-Line#config-file

croconut commented 2 years ago

i'll still add in the option to specify a config file though as you might want to use different ones for prod merges

croconut commented 2 years ago

just as an FYI, if youre using direct-scene you'll want to set these kinds of options there as the config file is mutually exclusive with direct-scene

Lyaaaaaaaaaaaaaaa commented 2 years ago

Great, thank you!