error log changed to warning. see #517
This commit is contained in:
parent
08b66b0495
commit
0d33809368
1 changed files with 1 additions and 1 deletions
|
|
@ -120,7 +120,7 @@ self.onmessage = async function(event) {
|
||||||
for (const parsedLine of parsedLines) {
|
for (const parsedLine of parsedLines) {
|
||||||
const { choices } = parsedLine;
|
const { choices } = parsedLine;
|
||||||
if (!choices || choices.length === 0) {
|
if (!choices || choices.length === 0) {
|
||||||
taLog.error("No choices found in parsed line: " + JSON.stringify(parsedLine));
|
taLog.warning("No choices found in parsed line: " + JSON.stringify(parsedLine));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
const { delta } = choices[0];
|
const { delta } = choices[0];
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue