Skip to content

Commit

Permalink
fix(access-license): Make logging when releasing licenses less verbose
Browse files Browse the repository at this point in the history
Fixes #1303
  • Loading branch information
mountaindude committed Nov 30, 2024
1 parent d42f27d commit 3e54c0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/qseow/qliksense_license.js
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ async function licenseReleaseProfessional(config, logger, qrsInstance) {

// Should currentUser be released?
if (!doNotRelease) {
logger.info(
logger.verbose(
`[QSEOW] QLIKSENSE LICENSE RELEASE PROFESSIONAL: Adding user ${license.user.userDirectory}\\${license.user.userId} (days since last use: ${daysSinceLastUse}) to releaseProfessional array`,
);
releaseProfessional.push({
Expand Down Expand Up @@ -752,7 +752,7 @@ async function licenseReleaseAnalyzer(config, logger, qrsInstance) {

// Should currentUser be released?
if (!doNotRelease) {
logger.info(
logger.verbose(
`[QSEOW] QLIKSENSE LICENSE RELEASE ANALYZER: Adding user ${license.user.userDirectory}\\${license.user.userId} (days since last use: ${daysSinceLastUse}) to releaseAnalyzer array`,
);
releaseAnalyzer.push({
Expand Down

0 comments on commit 3e54c0a

Please sign in to comment.