@hastehaul/common 2.0.35 → 2.0.37

Sign up to get free protection for your applications and to get access to all the features.
@@ -109,8 +109,8 @@ class NatsConsumer {
109
109
  }
110
110
  }
111
111
  catch (error) {
112
- console.error(error);
113
- // throw new Error("Failed to consume messages");
112
+ console.error("Consumer Error: ", error);
113
+ throw new Error("Failed to consume messages");
114
114
  }
115
115
  });
116
116
  }
@@ -36,7 +36,7 @@ class NatsPublisher {
36
36
  return yield jetStreamClient.publish(this.subject, typeof data === "string" ? this.sc.encode(data) : this.jc.encode(data));
37
37
  }
38
38
  catch (error) {
39
- console.error(error);
39
+ console.error("Publisher Error: ", error);
40
40
  throw new Error(`Failed to publish message. Error: [${error.message}]`);
41
41
  }
42
42
  });
@@ -31,7 +31,7 @@ class NatsStream {
31
31
  return;
32
32
  }
33
33
  catch (error) {
34
- console.error(error);
34
+ console.error("Stream Error: ", error);
35
35
  throw new Error("Failed to add stream");
36
36
  }
37
37
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hastehaul/common",
3
- "version": "2.0.35",
3
+ "version": "2.0.37",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",