Skip to content

Commit

Permalink
Remove double newline from logs
Browse files Browse the repository at this point in the history
  • Loading branch information
hampus-andersson-op committed Apr 16, 2024
1 parent 3f1bc35 commit 43ff84a
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/azuredevopsboard/AzureDevOpsBoardService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class AzureDevOpsBoardService {
core.warning('Error getting tickets for Azure DevOps Board!');
console.log('Error:', error.message);
}
console.log('\n');
console.log();
}
}
}
2 changes: 1 addition & 1 deletion src/branchprotection/BranchProtectionService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ export class BranchProtectionService {
core.warning(error.message);
}
}
console.log('\n');
console.log();
}
}
2 changes: 1 addition & 1 deletion src/codequalitytools/CodeQualityService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ export class CodeQualityService {
console.log(`Tool:`, `${codeQualityTool.nameOfTool}`);
core.exportVariable('codeQualityTool', codeQualityTool.nameOfTool);
}
console.log('\n');
console.log();
}
}
2 changes: 1 addition & 1 deletion src/pentest/PentestService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ export class PentestService {
console.log('Pentest date was found');
core.exportVariable('pentestDate', pentest.date);
}
console.log('\n');
console.log();
}
}
2 changes: 1 addition & 1 deletion src/sasttools/SastService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export class SastService {
if (sast.toLowerCase() === 'codeql') {
await CodeQLService.setCodeQLFindings();
}
console.log('\n');
console.log();
}
}
2 changes: 1 addition & 1 deletion src/scatools/ScaService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export class ScaService {
if (sca.toLowerCase() === 'dependabot') {
await DependabotService.setDependabotFindings();
}
console.log('\n');
console.log();
}
}
2 changes: 1 addition & 1 deletion src/secretscanning/SecretScanningService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ export class SecretScanningService {
core.warning(error.message);
core.exportVariable('numberOfExposedSecrets', 0);
}
console.log('\n');
console.log();
}
}
2 changes: 1 addition & 1 deletion src/threatmodeling/ThreatModelingService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ export class ThreatModelingService {
console.log('Threat Modeling date was found');
core.exportVariable('threatModelingDate', threatModeling.date);
}
console.log('\n');
console.log();
}
}

0 comments on commit 43ff84a

Please sign in to comment.