vovk-cli 0.0.1-draft.308 → 0.0.1-draft.309
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/dist/dev/index.mjs +2 -2
- package/package.json +1 -1
package/dist/dev/index.mjs
CHANGED
|
@@ -264,8 +264,8 @@ export class VovkDev {
|
|
|
264
264
|
const probableCause = {
|
|
265
265
|
404: 'The segment did not compile or config.origin is wrong.',
|
|
266
266
|
}[resp.status];
|
|
267
|
-
|
|
268
|
-
log.
|
|
267
|
+
log.warn(`Schema request to ${endpoint} for ${formatLoggedSegmentName(segmentName)} failed with status code ${resp.status} but expected 200.${probableCause ? ` Probable cause: ${probableCause}` : ''}. Response text will be logged below on "debug" level.`);
|
|
268
|
+
log.debug(`Response from ${formatLoggedSegmentName(segmentName)}: ${text}`);
|
|
269
269
|
return { isError: true };
|
|
270
270
|
}
|
|
271
271
|
let segmentSchema = null;
|