@abtnode/core 1.17.8-beta-20260113-015027-32a1cec4 → 1.17.8-beta-20260115-003043-5e15c08a

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -68,7 +68,8 @@ async function _onInstall(manager, { blocklet, componentDids, context, oldBlockl
68
68
 
69
69
  return installedBlocklet;
70
70
  } catch (error) {
71
- logger.error('blocklet onInstall error', { error });
71
+ console.error(`blocklet onInstall error: ${did}`, error);
72
+ logger.error('blocklet onInstall error', { did, error });
72
73
  return null;
73
74
  }
74
75
  }
@@ -55,7 +55,7 @@ async function _downloadAndInstall(manager, params, { _onInstall, _upgradeBlockl
55
55
  if (!b0) {
56
56
  throw new Error('blocklet does not exist before downloading');
57
57
  } else {
58
- logger.error(`blocklet status is invalid before downloading: ${fromBlockletStatus(b0.status)}`);
58
+ logger.warn(`blocklet status is invalid before downloading: ${fromBlockletStatus(b0.status)}`);
59
59
  }
60
60
  }
61
61
  } catch (error) {