Evgeny Minkevich
Evgeny Minkevich

Reputation: 2419

Google PubSub Emulator: How to configure logging level

What logging framework does Google PubSub Emulator use and how could I configure it?

At the moment it is quite verbose, I would like to silence it.

Thanks.

Upvotes: 3

Views: 1988

Answers (1)

Evgeny Minkevich
Evgeny Minkevich

Reputation: 2419

Google PubSub Emulator uses java.util.logging.

To silence the verbose output one needs to manually provide logging.properties to the jar executable:

-Djava.util.logging.config.file=${project.basedir}/src/test/resources/logging.properties

Upvotes: 1

Related Questions