chore: add more error log

This commit is contained in:
Shivam Mishra
2024-10-08 11:00:21 +05:30
parent 97699f3087
commit 91bac16c29
@@ -133,7 +133,7 @@ export const actions = {
commit('conversation/setMetaUserLastSeenAt', lastSeen, { root: true });
commit('setMissingMessagesInConversation', updatedConversation);
} catch (error) {
// IgnoreError
console.log(error);
}
},
@@ -158,7 +158,7 @@ export const actions = {
try {
await toggleTyping(data);
} catch (error) {
// IgnoreError
console.log(error);
}
},
@@ -172,7 +172,7 @@ export const actions = {
commit('setMetaUserLastSeenAt', lastSeen);
await setUserLastSeenAt({ lastSeen });
} catch (error) {
// IgnoreError
console.log(error);
}
},
@@ -184,7 +184,7 @@ export const actions = {
try {
await setCustomAttributes(customAttributes);
} catch (error) {
// IgnoreError
console.log(error);
}
},
@@ -192,7 +192,7 @@ export const actions = {
try {
await deleteCustomAttribute(customAttribute);
} catch (error) {
// IgnoreError
console.log(error);
}
},
};