Skip to content

Commit d907300

Browse files
committed
Fix logging and remove merge artifact
1 parent 33a8c49 commit d907300

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/core/src/runtime.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1564,7 +1564,7 @@ export class AgentRuntime implements IAgentRuntime {
15641564
messageServerId,
15651565
metadata,
15661566
});
1567-
this.logger.debug({ src: 'agent', agentId: this.agentId, worldId: id, serverId }, 'World created');
1567+
this.logger.debug({ src: 'agent', agentId: this.agentId, worldId: id, messageServerId }, 'World created');
15681568
}
15691569
}
15701570

@@ -1880,6 +1880,7 @@ export class AgentRuntime implements IAgentRuntime {
18801880

18811881
if (errorStack) {
18821882
this.logger.debug({ src: 'agent', agentId: this.agentId, serviceType, stack: errorStack }, 'Service error stack');
1883+
}
18831884

18841885
// Provide additional context about the failure
18851886
if (error?.message?.includes('timed out waiting for runtime initialization')) {

packages/plugin-sql/src/rls.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,6 @@ export async function uninstallEntityRLS(adapter: IDatabaseAdapter): Promise<voi
806806
logger.info('[Entity RLS] Entity RLS functions and policies removed successfully');
807807
} catch (error) {
808808
logger.error('[Entity RLS] Failed to remove entity RLS:', String(error));
809-
>>>>>>> origin/develop
810809
throw error;
811810
}
812811
}

0 commit comments

Comments
 (0)