@mastra/dynamodb 0.15.2-alpha.2 → 0.15.2

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/dist/index.js CHANGED
@@ -2756,8 +2756,6 @@ var WorkflowStorageDynamoDB = class extends WorkflowsStorage {
2756
2756
  async getWorkflowRunById(args) {
2757
2757
  const { runId, workflowName } = args;
2758
2758
  this.logger.debug("Getting workflow run by ID", { runId, workflowName });
2759
- console.log("workflowName", workflowName);
2760
- console.log("runId", runId);
2761
2759
  try {
2762
2760
  if (workflowName) {
2763
2761
  this.logger.debug("WorkflowName provided, using direct GET operation.");
@@ -2767,7 +2765,6 @@ var WorkflowStorageDynamoDB = class extends WorkflowsStorage {
2767
2765
  workflow_name: workflowName,
2768
2766
  run_id: runId
2769
2767
  }).go();
2770
- console.log("result", result2);
2771
2768
  if (!result2.data) {
2772
2769
  return null;
2773
2770
  }