Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.

Commit 32214cf

Browse files
committed
chore: turn info logs into debug logs
1 parent cca39ec commit 32214cf

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/routes/search/+page.server.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ export const load: PageServerLoad = async ({ url }) => {
3232
) as Record<FilterCategory, string[]>;
3333

3434
const currentPage = Math.max(1, parseInt(url.searchParams.get('page') as string, 10) || 1);
35-
logger.info(currentPage, "Current Page from URL Search Params");
35+
logger.debug(currentPage, "Current Page from URL Search Params");
3636
const pageSize = publicConfig.PUBLIC_RESULTS_PER_PAGE;
3737
const offset = (currentPage - 1) * pageSize;
38-
logger.info({ pageSize, offset }, "Page Size and Offset for Pagination");
38+
logger.debug({ pageSize, offset }, "Page Size and Offset for Pagination");
3939

4040
//------------------------ Create and Execute Queries ------------------------
4141
// 1. Create the sparql query strings
@@ -55,7 +55,7 @@ export const load: PageServerLoad = async ({ url }) => {
5555
getSparqlQueryResult(generatedQueries.countQuery),
5656
getSparqlQueryResult(generatedQueries.resultsQuery)
5757
]);
58-
logger.info({ countResult }, "Count Result:");
58+
logger.debug({ countResult }, "Count Result:");
5959
logger.debug({ queryResult }, "Query Result:");
6060

6161
// 3. Process the results to define your variables

0 commit comments

Comments
 (0)