Skip to content

Commit

Permalink
chore(sync): Do not print key information during sync
Browse files Browse the repository at this point in the history
  • Loading branch information
fguitton committed Oct 1, 2024
1 parent 52f8ed5 commit e2fdb1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/optimise-sync/src/controllers/syncController.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class SyncController {
}
try {

console.log('Incoming Synchronisation:', uuid, agent, key);
console.log('Incoming Synchronisation:', `${uuid.replace(/\n|\r/g, '')}`);
const validation = await syncCore.validateKey(uuid, key);
const inserts = [];
inserts.push(syncCore.createSyncRecord(uuid, {
Expand Down

0 comments on commit e2fdb1f

Please sign in to comment.