Skip to content

Commit c3e367c

Browse files
committed
Fix logging and remove merge artifact
Corrects the logging parameter from 'serverId' to 'messageServerId' in AgentRuntime and removes a merge conflict marker from rls.ts.
1 parent 5449103 commit c3e367c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/core/src/runtime.ts

Lines changed: 1 addition & 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

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)