diff --git a/nise-backend/src/main/kotlin/com/nisemoe/nise/search/SearchService.kt b/nise-backend/src/main/kotlin/com/nisemoe/nise/search/SearchService.kt index 68688fd..c8d4a9b 100644 --- a/nise-backend/src/main/kotlin/com/nisemoe/nise/search/SearchService.kt +++ b/nise-backend/src/main/kotlin/com/nisemoe/nise/search/SearchService.kt @@ -113,8 +113,6 @@ class SearchService( val results = query .fetch() - println(query.toString()) - // Get total results val totalResults = dslContext.selectCount() .from(SCORES) diff --git a/nise-frontend/src/app/format.ts b/nise-frontend/src/app/format.ts index 98243bf..1c13b88 100644 --- a/nise-frontend/src/app/format.ts +++ b/nise-frontend/src/app/format.ts @@ -5,8 +5,6 @@ export function formatDuration(seconds: number): string | null { return null; } - console.log(seconds); - const days = Math.floor(seconds / (3600 * 24)); const hours = Math.floor((seconds % (3600 * 24)) / 3600); const minutes = Math.floor((seconds % 3600) / 60); diff --git a/nise-frontend/src/corelib/components/query-builder/query-builder.component.ts b/nise-frontend/src/corelib/components/query-builder/query-builder.component.ts index 1b8956f..5aace96 100644 --- a/nise-frontend/src/corelib/components/query-builder/query-builder.component.ts +++ b/nise-frontend/src/corelib/components/query-builder/query-builder.component.ts @@ -59,7 +59,7 @@ export class QueryBuilderComponent { } queryChanged(): void { - console.log(this.queries); + } }