@zodic/shared 0.0.172 → 0.0.173
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.
|
@@ -59,6 +59,9 @@ export class ConceptService {
|
|
|
59
59
|
};
|
|
60
60
|
allNamesEN = data['en-us'] || [];
|
|
61
61
|
allNamesPT = data['pt-br'] || [];
|
|
62
|
+
} else {
|
|
63
|
+
console.log('!-- Error on fetching url: ', doUrl);
|
|
64
|
+
console.log('!-- Response: ', response);
|
|
62
65
|
}
|
|
63
66
|
|
|
64
67
|
// ✅ Fetch existing KV data to backfill Durable Object if necessary
|
|
@@ -78,7 +81,7 @@ export class ConceptService {
|
|
|
78
81
|
headers: { 'Content-Type': 'application/json' },
|
|
79
82
|
});
|
|
80
83
|
} catch (e) {
|
|
81
|
-
console.
|
|
84
|
+
console.log(
|
|
82
85
|
`!-- Error on fetch ConceptNames ${(e as Error).message}`
|
|
83
86
|
);
|
|
84
87
|
}
|
|
@@ -95,7 +98,7 @@ export class ConceptService {
|
|
|
95
98
|
headers: { 'Content-Type': 'application/json' },
|
|
96
99
|
});
|
|
97
100
|
} catch (e) {
|
|
98
|
-
console.
|
|
101
|
+
console.log(
|
|
99
102
|
`!-- Error on fetch ConceptNames ${(e as Error).message}`
|
|
100
103
|
);
|
|
101
104
|
}
|