Compare commits

...

3 commits

Author SHA1 Message Date
ef7c5f2750 Lazygit test no. 2 2024-04-05 14:29:07 -04:00
bcea5099bc Lazygit test no. 1 2024-04-05 14:27:08 -04:00
e11aa4c751 Committing before test 2024-04-05 14:26:43 -04:00

View file

@ -8,7 +8,7 @@ export class CatsService {
constructor( constructor(
@InjectRepository(Cat) @InjectRepository(Cat)
private catsRepository: Repository<Cat>, private catsRepository: Repository<Cat>,
) {} ) { }
private readonly logger = new Logger(CatsService.name); private readonly logger = new Logger(CatsService.name);
@ -26,4 +26,9 @@ export class CatsService {
this.logger.log("[remove] Starting..."); this.logger.log("[remove] Starting...");
await this.catsRepository.delete(id) await this.catsRepository.delete(id)
} }
lazygitTest(): void {
this.logger.log("[lazygitTest] test no. 1")
this.logger.log("[lazygitTest] Test no. 2")
}
} }