Skip to content

Commit 358dcd3

Browse files
committed
refactor: remove unnecessary logging from seed generation process
1 parent 936b797 commit 358dcd3

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

server/src/seed/seed.service.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ export class SeedService {
106106
const nbsSong = this.generateRandomSong();
107107
const fileData = nbsSong.toArrayBuffer();
108108
const fileBuffer = Buffer.from(fileData);
109-
this.logger.log(`Generated song has ${fileBuffer.length} bytes.`);
110109

111110
const body: UploadSongDto = {
112111
file: {
@@ -210,10 +209,6 @@ export class SeedService {
210209
// "i * 4" is placeholder - this is the tick to place on
211210
}
212211

213-
this.logger.log(
214-
`Generated song with ${layerCount} layers, ${songTest.length} ticks`,
215-
);
216-
217212
return songTest;
218213
}
219214

0 commit comments

Comments
 (0)