We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 936b797 commit 358dcd3Copy full SHA for 358dcd3
server/src/seed/seed.service.ts
@@ -106,7 +106,6 @@ export class SeedService {
106
const nbsSong = this.generateRandomSong();
107
const fileData = nbsSong.toArrayBuffer();
108
const fileBuffer = Buffer.from(fileData);
109
- this.logger.log(`Generated song has ${fileBuffer.length} bytes.`);
110
111
const body: UploadSongDto = {
112
file: {
@@ -210,10 +209,6 @@ export class SeedService {
210
209
// "i * 4" is placeholder - this is the tick to place on
211
}
212
213
- this.logger.log(
214
- `Generated song with ${layerCount} layers, ${songTest.length} ticks`,
215
- );
216
-
217
return songTest;
218
219
0 commit comments