Browse Source

Improve error log

Danilo Bargen 6 năm trước cách đây
mục cha
commit
850f5b4800
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/services/webclient.ts

+ 1 - 1
src/services/webclient.ts

@@ -689,7 +689,7 @@ export class WebClientService {
      */
     private logOnReject(type: string, subType: string) {
         return ((error) => {
-            this.$log.error(this.logTag, `Message ${type}/${subType} has been rejected: ${error}`);
+            this.$log.error(this.logTag, `Message ${type}/${subType} has been rejected by the remote: ${error}`);
         });
     }