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

@@ -640,7 +640,7 @@ export const PlatformServiceMixin = {
*/
async $getActiveIdentity(): Promise<{ activeDid: string }> {
try {
logger.info(
logger.debug(
"[PlatformServiceMixin] $getActiveIdentity() called - API layer verification",
);
@@ -656,7 +656,7 @@ export const PlatformServiceMixin = {
logger.debug("[PlatformServiceMixin] Active identity found:", {
activeDid,
});
logger.info(
logger.debug(
"[PlatformServiceMixin] $getActiveIdentity(): activeDid resolved",
{ activeDid },
);
@@ -701,7 +701,7 @@ export const PlatformServiceMixin = {
const accountDids = availableAccounts.values.map(
(row: unknown[]) => row[0] as string,
);
logger.info(
logger.debug(
"[PlatformServiceMixin] Available accounts for user selection:",
{ accountDids },
);
@@ -987,7 +987,7 @@ export const PlatformServiceMixin = {
"[PlatformServiceMixin] Using activeDid from active_identity table:",
{ activeDid: activeIdentity.activeDid },
);
logger.info(
logger.debug(
"[PlatformServiceMixin] $accountSettings() returning activeDid:",
{ activeDid: mergedSettings.activeDid },
);
@@ -1766,7 +1766,7 @@ export const PlatformServiceMixin = {
const settings = mappedResults[0] as Settings;
logger.info(`[PlatformServiceMixin] Settings for DID ${did}:`, {
logger.debug(`[PlatformServiceMixin] Settings for DID ${did}:`, {
firstName: settings.firstName,
isRegistered: settings.isRegistered,
activeDid: settings.activeDid,
@@ -1793,7 +1793,7 @@ export const PlatformServiceMixin = {
try {
// Get default settings
const defaultSettings = await this.$getMasterSettings({});
logger.info(
logger.debug(
`[PlatformServiceMixin] Default settings:`,
defaultSettings,
);
@@ -1807,7 +1807,7 @@ export const PlatformServiceMixin = {
defaultSettings || {},
);
logger.info(`[PlatformServiceMixin] Merged settings for ${did}:`, {
logger.debug(`[PlatformServiceMixin] Merged settings for ${did}:`, {
defaultSettings,
didSettings,
mergedSettings,