@@ -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