Skip to content

Commit

Permalink
Merge pull request #777 from ElrondNetwork/SERVICES-1072-fix-svg-chec…
Browse files Browse the repository at this point in the history
…king-in-clarifai

Fix logger dependency
  • Loading branch information
danielailie authored Dec 20, 2022
2 parents 946a8b9 + 29734f1 commit 245d429
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/modules/assets/content.validation.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ import { VerifyContentService } from './verify-content.service';
export class ContentValidation {
private status: boolean = true;
private verifyContentService: VerifyContentService;
constructor(private logger: Logger) {
private readonly logger: Logger;
constructor() {
this.logger = new Logger(ContentValidation.name);
this.verifyContentService = new VerifyContentService();
}

Expand Down

0 comments on commit 245d429

Please sign in to comment.