chore: move more logger infos to debugs

This commit is contained in:
2025-09-05 19:52:53 -06:00
parent 448d8a68d2
commit 52b1e8ffa3
11 changed files with 55 additions and 58 deletions

View File

@@ -301,7 +301,7 @@ export default class ContactsView extends Vue {
this.apiServer = settings.apiServer || DEFAULT_ENDORSER_API_SERVER;
this.isRegistered = !!settings.isRegistered;
logger.info("[ContactsView] Created with settings:", {
logger.debug("[ContactsView] Created with settings:", {
activeDid: this.activeDid,
apiServer: this.apiServer,
isRegistered: this.isRegistered,
@@ -355,7 +355,7 @@ export default class ContactsView extends Vue {
// this happens when a platform (eg iOS) doesn't include anything after the "=" in a shared link.
this.notify.error(NOTIFY_BLANK_INVITE.message, TIMEOUTS.VERY_LONG);
} else if (importedInviteJwt) {
logger.info("[ContactsView] Processing invite JWT, current activeDid:", {
logger.debug("[ContactsView] Processing invite JWT, current activeDid:", {
activeDid: this.activeDid,
});
@@ -376,7 +376,7 @@ export default class ContactsView extends Vue {
}
// send invite directly to server, with auth for this user
const headers = await getHeaders(this.activeDid);
logger.info("[ContactsView] Making API request to claim invite:", {
logger.debug("[ContactsView] Making API request to claim invite:", {
apiServer: this.apiServer,
activeDid: this.activeDid,
hasApiServer: !!this.apiServer,
@@ -404,7 +404,7 @@ export default class ContactsView extends Vue {
const payload: JWTPayload =
decodeEndorserJwt(importedInviteJwt).payload;
const registration = payload as VerifiableCredential;
logger.info(
logger.debug(
"[ContactsView] Opening ContactNameDialog for invite processing",
);
(this.$refs.contactNameDialog as ContactNameDialog).open(