Skip to content

Commit

Permalink
fix "affected"
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikiwanekhyland committed Jul 2, 2024
1 parent f7319af commit 2d56515
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ jobs:
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
ref: refs/heads/develop
- uses: ./.github/actions/setup
with:
enable-cache: false
Expand All @@ -114,6 +115,7 @@ jobs:
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
ref: refs/heads/develop
- uses: ./.github/actions/setup
with:
enable-cache: false
Expand Down
2 changes: 1 addition & 1 deletion lib/core/src/lib/common/services/log.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class LogService {
const configLevel: string = this.appConfig.get<string>(AppConfigValues.LOG_LEVEL);

if (configLevel) {
return this.getLogLevel(configLevel);
return this.getLogLevel(configLevel) as number;
}

return LogLevelsEnum.TRACE;
Expand Down

0 comments on commit 2d56515

Please sign in to comment.