We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adb77d7 commit ac28ef4Copy full SHA for ac28ef4
1 file changed
src/client/ClientAgent.ts
@@ -1330,6 +1330,12 @@ export class ClientAgent implements IAgent {
1330
});
1331
}
1332
1333
+ /**
1334
+ * Commits a developer message to the history, notifying the system via BusService without triggering execution.
1335
+ * Useful for logging developer notes or debugging information, coordinated with SessionConnectionService.
1336
+ * @param {string} message - The developer message to commit, trimmed before storage.
1337
+ * @returns {Promise<void>} Resolves when the message is committed and the event is emitted.
1338
+ */
1339
async commitDeveloperMessage(message: string): Promise<void> {
1340
GLOBAL_CONFIG.CC_LOGGER_ENABLE_DEBUG &&
1341
this.params.logger.debug(
0 commit comments