@kosdev-code/kos-ui-sdk 0.1.0-dev.5192 → 0.1.0-dev.5194

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.
package/index.js CHANGED
@@ -1900,12 +1900,12 @@ class Ge {
1900
1900
  await this._removeEvictedModels(r), this._logEvictionComplete(r.length), this.increment();
1901
1901
  }
1902
1902
  /**
1903
- * Log capacity exceeded warning (Zone 3)
1903
+ * Log capacity exceeded info (Zone 3)
1904
1904
  * @private
1905
1905
  */
1906
1906
  _logCapacityWarning(e) {
1907
- le.warn(
1908
- `Container capacity exceeded (${this._data.size}/${this._maxCapacity}). Evicting ${e} models using ${this._evictionStrategy} strategy. This may indicate missing cleanup handlers or data inconsistency.`,
1907
+ le.info(
1908
+ `Container capacity exceeded (${this._data.size}/${this._maxCapacity}). Evicting ${e} models using ${this._evictionStrategy} strategy.`,
1909
1909
  { parentId: this._parentId }
1910
1910
  );
1911
1911
  }
@@ -1967,7 +1967,7 @@ class Ge {
1967
1967
  */
1968
1968
  async _removeEvictedModels(e) {
1969
1969
  for (const s of e)
1970
- le.warn(
1970
+ le.info(
1971
1971
  `Evicting model: ${s.id} (type: ${s.constructor.name})`,
1972
1972
  {
1973
1973
  modelId: s.id,