@sumaris-net/ngx-components 2.4.59 → 2.4.60

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.
@@ -14166,7 +14166,7 @@ class HttpUtils {
14166
14166
  }
14167
14167
  catch (err) {
14168
14168
  if (err && err.message) {
14169
- console.error(`[network] Error on get request ${uri}: ${err.message}`, err);
14169
+ console.error(`[network] Error on get request ${uri}: ${err.message}`, JSON.stringify(err));
14170
14170
  }
14171
14171
  else {
14172
14172
  console.error(`[network] Error on get request ${uri}: ${err && err.statusText} - ${JSON.stringify(err)}`);
@@ -14190,7 +14190,7 @@ class HttpUtils {
14190
14190
  }
14191
14191
  catch (err) {
14192
14192
  if (err && err.message) {
14193
- console.error(`[network] Error on get request ${uri}: ${err.message}`, err);
14193
+ console.error(`[network] Error on get request ${uri}: ${err.message}`, JSON.stringify(err));
14194
14194
  }
14195
14195
  else {
14196
14196
  console.error(`[network] Error on get request ${uri}: ${err && err.statusText} - ${JSON.stringify(err)}`);