These two commands are not equivalent, only the latter version actually enables debug logging
java -jar liquibase.jar --defaultsFile test.properties update --logLevel=debug
java -jar liquibase.jar --logLevel=debug --defaultsFile test.properties update
this is confusing when you are trying to debug stuff, since it looks like you are requesting debug output, but you’ll not get it.