File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -145,8 +145,8 @@ export async function getActorsAsTools(
145145 actors : string [ ] ,
146146 apifyToken : string
147147) : Promise < ToolWrap [ ] > {
148- console . log ( ' Fetching actors as tools...' ) ;
149- console . log ( actors )
148+ log . debug ( ` Fetching actors as tools...` ) ;
149+ log . debug ( `Actors: ${ actors } ` ) ;
150150 // Actorized MCP servers
151151 const actorsMCPServers : string [ ] = [ ] ;
152152 for ( const actorID of actors ) {
@@ -156,8 +156,8 @@ export async function getActorsAsTools(
156156 }
157157 // Normal Actors as a tool
158158 const toolActors = actors . filter ( ( actorID ) => ! actorsMCPServers . includes ( actorID ) ) ;
159- console . log ( ' actorsMCPserver' , actorsMCPServers ) ;
160- console . log ( ' toolActors' , toolActors ) ;
159+ log . debug ( ` actorsMCPserver: ${ actorsMCPServers } ` ) ;
160+ log . debug ( ` toolActors: ${ toolActors } ` ) ;
161161
162162 // Normal Actors as a tool
163163 const normalTools = await getNormalActorsAsTools ( toolActors , apifyToken ) ;
You can’t perform that action at this time.
0 commit comments