File tree 2 files changed +2
-6
lines changed
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -514,11 +514,7 @@ export async function createAgent(
514
514
cache : ICacheManager ,
515
515
token : string
516
516
) : Promise < AgentRuntime > {
517
- elizaLogger . success (
518
- elizaLogger . successesTitle ,
519
- "Creating runtime for character" ,
520
- character . name
521
- ) ;
517
+ elizaLogger . log ( `Creating runtime for character ${ character . name } ` ) ;
522
518
523
519
nodePlugin ??= createNodePlugin ( ) ;
524
520
Original file line number Diff line number Diff line change @@ -267,7 +267,7 @@ export class AgentRuntime implements IAgentRuntime {
267
267
this . ensureParticipantExists ( this . agentId , this . agentId ) ;
268
268
} ) ;
269
269
270
- elizaLogger . success ( " Agent ID" , this . agentId ) ;
270
+ elizaLogger . success ( ` Agent ID: ${ this . agentId } ` ) ;
271
271
272
272
this . fetch = ( opts . fetch as typeof fetch ) ?? this . fetch ;
273
273
You can’t perform that action at this time.
0 commit comments