Skip to content

Commit

Permalink
Add missing calls to QLogback.configure()
Browse files Browse the repository at this point in the history
Fix: #50
  • Loading branch information
io7m committed May 22, 2024
1 parent 153b116 commit ce82a57
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ public QCommandStatus onExecute(
final QCommandContextType context)
throws Exception
{
QLogback.configure(context);

final var parsers =
new CSConfigurationParsers();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ public QCommandStatus onExecute(
final QCommandContextType context)
throws Exception
{
QLogback.configure(context);

Security.addProvider(new BouncyCastleProvider());

final var generator =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ public QCommandStatus onExecute(
final QCommandContextType context)
throws Exception
{
QLogback.configure(context);

final var outputDirectory =
context.parameterValue(OUTPUT_DIRECTORY)
.toAbsolutePath();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ public QCommandStatus onExecute(
final QCommandContextType context)
throws Exception
{
QLogback.configure(context);

final var parsers =
new CSConfigurationParsers();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ public List<QParameterNamedType<?>> onListNamedParameters()
public QCommandStatus onExecute(
final QCommandContextType context)
{
QLogback.configure(context);

final var iter =
ServiceLoader.load(CSCertificateOutputProviderType.class)
.iterator();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ public List<QParameterNamedType<?>> onListNamedParameters()
public QCommandStatus onExecute(
final QCommandContextType context)
{
QLogback.configure(context);

final var iter =
ServiceLoader.load(CSDNSConfiguratorProviderType.class)
.iterator();
Expand Down

0 comments on commit ce82a57

Please sign in to comment.