Skip to content

Commit c5a4347

Browse files
takaokoujiGemini
andcommitted
fix: reduce logging frequency in MeshV2Service
- Changed log.info to log.debug in sendData to reduce console flooding Co-Authored-By: Gemini <noreply@google.com>
1 parent d66715f commit c5a4347

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extensions/scratch3_mesh_v2/mesh-service.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ class MeshV2Service {
765765
if (!this.groupId || !this.client) return;
766766

767767
const unchanged = this.isDataUnchanged(dataArray);
768-
log.info(`Mesh V2: sendData called with ${dataArray.length} items: ` +
768+
log.debug(`Mesh V2: sendData called with ${dataArray.length} items: ` +
769769
`${JSON.stringify(dataArray)} (unchanged: ${unchanged})`);
770770

771771
// Change detection

0 commit comments

Comments
 (0)