]> Untitled Git - lemmy-ui.git/commitdiff
Adding back in logging
authorDessalines <tyhou13@gmx.com>
Wed, 7 Apr 2021 15:54:38 +0000 (11:54 -0400)
committerDessalines <tyhou13@gmx.com>
Wed, 7 Apr 2021 15:54:38 +0000 (11:54 -0400)
14 files changed:
src/shared/components/admin-settings.tsx
src/shared/components/comment-form.tsx
src/shared/components/communities.tsx
src/shared/components/community-form.tsx
src/shared/components/community.tsx
src/shared/components/create-post.tsx
src/shared/components/create-private-message.tsx
src/shared/components/login.tsx
src/shared/components/main.tsx
src/shared/components/modlog.tsx
src/shared/components/navbar.tsx
src/shared/components/password_change.tsx
src/shared/components/post-form.tsx
src/shared/components/private-message-form.tsx

index 0836a16d171595793331a08a0a74842ffd962751..19856f3c6033a48293256931e91dafc843083c0d 100644 (file)
@@ -212,6 +212,7 @@ export class AdminSettings extends Component<any, AdminSettingsState> {
 
   parseMessage(msg: any) {
     let op = wsUserOp(msg);
+    console.log(msg);
     if (msg.error) {
       toast(i18n.t(msg.error), "danger");
       this.context.router.history.push("/");
index 267759436b7773b54fd93cab6d89ce87c8fdf3ad..a2da93315927eb32a72ec446d2c5ff9858e6164d 100644 (file)
@@ -131,6 +131,7 @@ export class CommentForm extends Component<CommentFormProps, CommentFormState> {
 
   parseMessage(msg: any) {
     let op = wsUserOp(msg);
+    console.log(msg);
 
     // Only do the showing and hiding if logged in
     if (UserService.Instance.localUserView) {
index 74a1ac32a27e3495cecfe5a225ca4e54e7b71d65..953e9f1c2de391fda50633d16c688efbab572817 100644 (file)
@@ -310,6 +310,7 @@ export class Communities extends Component<any, CommunitiesState> {
 
   parseMessage(msg: any) {
     let op = wsUserOp(msg);
+    console.log(msg);
     if (msg.error) {
       toast(i18n.t(msg.error), "danger");
       return;
index 97d335e2b7c7fd79c43c3e297e062d7fe86b0d2a..396c0f3fff30b71fc34ec9b6d85f6bbe89bc3498 100644 (file)
@@ -314,6 +314,7 @@ export class CommunityForm extends Component<
 
   parseMessage(msg: any) {
     let op = wsUserOp(msg);
+    console.log(msg);
     if (msg.error) {
       toast(i18n.t(msg.error), "danger");
       this.state.loading = false;
index bd603800b379d57791178e9c8cac2e0fecf27519..b75a816e769d7dee363e69a5dc9982f55c32e5a4 100644 (file)
@@ -432,6 +432,7 @@ export class Community extends Component<any, State> {
 
   parseMessage(msg: any) {
     let op = wsUserOp(msg);
+    console.log(msg);
     if (msg.error) {
       toast(i18n.t(msg.error), "danger");
       this.context.router.history.push("/");
index 00221d6d7fcf4061e32c9952eea17216dc064e73..f3d453bdb8f7a948259bb4c0f315dd0cdecf6d4d 100644 (file)
@@ -171,6 +171,7 @@ export class CreatePost extends Component<any, CreatePostState> {
 
   parseMessage(msg: any) {
     let op = wsUserOp(msg);
+    console.log(msg);
     if (msg.error) {
       toast(i18n.t(msg.error), "danger");
       return;
index 3771da62bac5c4dc98aa933a410d30236486b0f7..aceba6b97b6b5eca7bc1320554cf951517e3fd9a 100644 (file)
@@ -137,6 +137,7 @@ export class CreatePrivateMessage extends Component<
 
   parseMessage(msg: any) {
     let op = wsUserOp(msg);
+    console.log(msg);
     if (msg.error) {
       toast(i18n.t(msg.error), "danger");
       this.state.loading = false;
index 325df274af7d4d25b91fd3e0dd1ba1fffa9ed423..7a305f513704279a093f53dabc61065b4155d8c1 100644 (file)
@@ -425,6 +425,7 @@ export class Login extends Component<any, State> {
 
   parseMessage(msg: any) {
     let op = wsUserOp(msg);
+    console.log(msg);
     if (msg.error) {
       toast(i18n.t(msg.error), "danger");
       this.state = this.emptyState;
index 4fcc56a5a861b8135b18fa5ab9750ef75d9c7341..05624d3b33eaac77d2071014f292ac26ffdc64bc 100644 (file)
@@ -724,6 +724,7 @@ export class Main extends Component<any, MainState> {
 
   parseMessage(msg: any) {
     let op = wsUserOp(msg);
+    console.log(msg);
     if (msg.error) {
       toast(i18n.t(msg.error), "danger");
       return;
index 1fc3b0b0cf9664060d7757615cb8857f8cf66b7b..960eeb284db3b050f56cc70d4caddf4bded90da2 100644 (file)
@@ -471,6 +471,7 @@ export class Modlog extends Component<any, ModlogState> {
 
   parseMessage(msg: any) {
     let op = wsUserOp(msg);
+    console.log(msg);
     if (msg.error) {
       toast(i18n.t(msg.error), "danger");
       return;
index 12a6ed276b976da414fe6704f282e21e3ffd2b9e..04061a1103f8df571a5cf739cab7d905df12ca57 100644 (file)
@@ -380,6 +380,7 @@ export class Navbar extends Component<NavbarProps, NavbarState> {
 
   parseMessage(msg: any) {
     let op = wsUserOp(msg);
+    console.log(msg);
     if (msg.error) {
       if (msg.error == "not_logged_in") {
         UserService.Instance.logout();
index 6469cb7b960f2a7f7db0f91cf82cec37459bfc24..0c30c7144804af5af7737519a2d79d45b0324ff4 100644 (file)
@@ -149,6 +149,7 @@ export class PasswordChange extends Component<any, State> {
 
   parseMessage(msg: any) {
     let op = wsUserOp(msg);
+    console.log(msg);
     if (msg.error) {
       toast(i18n.t(msg.error), "danger");
       this.state.loading = false;
index 219ca249f48ce67284b8aea9a7a039bea11a81b5..5ee3841f917aa876ee5df004708c745061212424 100644 (file)
@@ -606,6 +606,7 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
 
   parseMessage(msg: any) {
     let op = wsUserOp(msg);
+    console.log(msg);
     if (msg.error) {
       toast(i18n.t(msg.error), "danger");
       this.state.loading = false;
index 89d61132ce4ca3d0ce30babbf1e4e19fea2feddf..a19095d761338747a1c8bc2dbb68704c8053f838 100644 (file)
@@ -225,6 +225,7 @@ export class PrivateMessageForm extends Component<
 
   parseMessage(msg: any) {
     let op = wsUserOp(msg);
+    console.log(msg);
     if (msg.error) {
       toast(i18n.t(msg.error), "danger");
       this.state.loading = false;