Skip to content

Commit

Permalink
remove unnecessary console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
dskvr committed Jan 23, 2025
1 parent 1f18a88 commit 3052613
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ jobs:
echo "Host User: ${{ secrets.GUI_HOST_USER }}"
echo "Host IP: ${{ secrets.GUI_HOST_IP }}"
ssh -v -i ~/.ssh/gui_ssh_key -o StrictHostKeyChecking=no "${{ secrets.GUI_HOST_USER }}@${{ secrets.GUI_HOST_IP }}" echo "Connection Successful"
- name: Prepare Directories (GUI)
if: matrix.package == 'gui'
Expand Down
2 changes: 1 addition & 1 deletion libraries/route66/src/services/MonitorService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ export class MonitorService extends Service {
}
let highestTimestamp: number = 0;
const onevents: SubscribeHandlers['onevents'] = (events: IEvent[]) => {
console.log('!!! liveSync: onevents', events?.length);
// console.log('!!! liveSync: onevents', events?.length);

const now = Math.round(Date.now() / 1000);
let highestTimestamp = startedAt; // Initialize to startedAt to avoid unnecessary checks later
Expand Down

0 comments on commit 3052613

Please sign in to comment.