@2en/clawly-plugins 1.10.0 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gateway/memory.ts +2 -1
- package/package.json +1 -1
package/gateway/memory.ts
CHANGED
|
@@ -117,6 +117,7 @@ export function registerMemoryBrowser(api: PluginApi) {
|
|
|
117
117
|
// -----------------------------
|
|
118
118
|
api.registerGatewayMethod('memory-browser.list', async ({params, respond}) => {
|
|
119
119
|
try {
|
|
120
|
+
api.logger.info(`memory-browser.list params: ${JSON.stringify(params)}`)
|
|
120
121
|
const profile = readString(params, 'profile')
|
|
121
122
|
const scope = readString(params, 'scope') ?? 'memory'
|
|
122
123
|
|
|
@@ -217,5 +218,5 @@ export function registerMemoryBrowser(api: PluginApi) {
|
|
|
217
218
|
}
|
|
218
219
|
})
|
|
219
220
|
|
|
220
|
-
api.logger.info(`memory-browser: registered (dir: ${memoryDir})`)
|
|
221
|
+
api.logger.info(`memory-browser: registered v1.11.0 (dir: ${memoryDir})`)
|
|
221
222
|
}
|