diff --git a/packages/daf-core/src/agent.ts b/packages/daf-core/src/agent.ts index 7fddb1b66..8a3738e06 100644 --- a/packages/daf-core/src/agent.ts +++ b/packages/daf-core/src/agent.ts @@ -1,4 +1,5 @@ import { IAgentBase, TMethodMap, IAgentPlugin } from './types' +import Debug from 'debug' export class Agent implements IAgentBase { readonly methods: TMethodMap = {} @@ -30,7 +31,10 @@ export class Agent implements IAgentBase { } async execute
(method: string, args: P): Promise