Skip to content

Commit

Permalink
chore: set flipt log level
Browse files Browse the repository at this point in the history
  • Loading branch information
markphelps committed Dec 11, 2023
1 parent 39498d0 commit 1cd5359
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import * as core from '@actions/core'
import * as glob from '@actions/glob'
import {downloadFlipt} from './lib/cli'
import {environmentVariables} from './lib/environment'
import {exec} from './lib/exec'
Expand Down Expand Up @@ -41,7 +40,12 @@ async function validate(args: string[] = []): Promise<void> {
const result = await exec(
'flipt',
['validate', '--issue-exit-code=0', '--format=json'],
false
false,
{
env: {
FLIPT_LOG_LEVEL: 'fatal'
}
}
)

core.endGroup()
Expand Down

0 comments on commit 1cd5359

Please sign in to comment.