From: Justin Wind <justin.wind+git@gmail.com>
Date: Fri, 13 Aug 2021 18:55:43 +0000 (-0700)
Subject: correct some method names in error logs
X-Git-Tag: v1.1.3^2~2
X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=5e7ab1d9ec27aab6e321c5a647cc1717980d331e;p=websub-hub

correct some method names in error logs
---

diff --git a/src/manager.js b/src/manager.js
index 6fb187c..d7a07f1 100644
--- a/src/manager.js
+++ b/src/manager.js
@@ -342,7 +342,7 @@ class Manager {
       let fn, info, id;
       try {
         if (data.mode === Enum.Mode.Publish) {
-          fn = 'topicPublish';
+          fn = 'topicFetchRequested';
           info = await this.db.topicFetchRequested(dbCtx, data.topicId);
           id = data.topicId;
         } else {
@@ -366,7 +366,7 @@ class Manager {
             fn = 'topicFetchClaimAndProcessById';
             await this.communication.topicFetchClaimAndProcessById(dbCtx, id, requestId);
           } else {
-            fn = 'processVerification';
+            fn = 'verificationClaimAndProcessById';
             await this.communication.verificationClaimAndProcessById(dbCtx, id, requestId);
           }
         } catch (e) {