Skip to content

Commit

Permalink
logger.debug for SSE chunk decoding
Browse files Browse the repository at this point in the history
  • Loading branch information
haifengl committed Jun 25, 2024
1 parent e80bc95 commit 443544d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deep/src/main/java/smile/llm/llama/Llama.java
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ public CompletionPrediction[] generate(int[][] prompts, int maxGenLen, double te
publisher.submit(chunk);
chunkPos = curPos + 1;
} catch (Exception ex) {
logger.info("Cannot decode a chunk", ex);
logger.debug("Cannot decode a chunk", ex);
}
}
}
Expand Down

0 comments on commit 443544d

Please sign in to comment.