Skip to content

Commit 23b8461

Browse files
committed
test: remove debu logs
1 parent 4afbe87 commit 23b8461

File tree

3 files changed

+0
-26
lines changed

3 files changed

+0
-26
lines changed

src/modules/songs/use-cases/create-song-station/create-song-station.use-case.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@ export class CreateSongStationUseCase implements IUseCase<string, string> {
1818
context: 'android'
1919
})
2020

21-
console.log({
22-
songId,
23-
data
24-
})
25-
2621
if (!data || !ok || !data.stationid) throw new HTTPException(500, { message: 'could not create station' })
2722

2823
return data.stationid

src/modules/songs/use-cases/get-song-suggestions/get-song-suggestions.use-case.spec.ts

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/modules/songs/use-cases/get-song-suggestions/get-song-suggestions.use-case.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export class GetSongSuggestionsUseCase implements IUseCase<GetSongSuggestionsArg
2222
async execute({ songId, limit }: GetSongSuggestionsArgs) {
2323
const stationId = await this.createSongStation.execute(songId)
2424

25-
console.log({ stationId })
2625
const { data, ok } = await useFetch<z.infer<typeof SongSuggestionAPIResponseModel>>({
2726
endpoint: Endpoints.songs.suggestions,
2827
params: {
@@ -32,8 +31,6 @@ export class GetSongSuggestionsUseCase implements IUseCase<GetSongSuggestionsArg
3231
context: 'android'
3332
})
3433

35-
console.log({ data })
36-
3734
if (!data || !ok) {
3835
throw new HTTPException(404, { message: `no suggestions found for the given song` })
3936
}

0 commit comments

Comments
 (0)