@@ -35,8 +35,6 @@ module.exports = eggspress('/query/app', {
35
35
} , async ( req , res , next ) => {
36
36
const results = [ ] ;
37
37
38
- console . log ( 'BODY?' , req . body ) ;
39
-
40
38
const db = req . services . get ( 'database' ) . get ( DB_READ , 'apps' ) ;
41
39
42
40
const svc_appInformation = req . services . get ( 'app-information' ) ;
@@ -56,10 +54,7 @@ module.exports = eggspress('/query/app', {
56
54
if ( amount === undefined ) amount = 20 ;
57
55
let uids = svc_appInformation . collections [ col_name ] ;
58
56
uids = uids . slice ( 0 , Math . min ( uids . length , amount ) ) ;
59
- console . log ( 'GOT SOME UIDS' , uids ) ;
60
57
app_list . splice ( i , 1 , ...uids ) ;
61
-
62
- console . log ( 'NEW LIST' , app_list ) ;
63
58
}
64
59
}
65
60
@@ -70,10 +65,7 @@ module.exports = eggspress('/query/app', {
70
65
if ( amount === undefined ) amount = 20 ;
71
66
let uids = svc_appInformation . tags [ tag_name ] ?? [ ] ;
72
67
uids = uids . slice ( 0 , Math . min ( uids . length , amount ) ) ;
73
- console . log ( 'GOT SOME UIDS' , uids ) ;
74
68
app_list . splice ( i , 1 , ...uids ) ;
75
-
76
- console . log ( 'NEW LIST' , app_list ) ;
77
69
}
78
70
}
79
71
0 commit comments