Skip to content

Commit

Permalink
tidy up logs and reduce poll interval for metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
tinyzimmer committed Nov 12, 2023
1 parent 31ecd3b commit 786255a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/ConnectionProfileView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export default defineComponent({
);
const network = ref<Network | null>(null);
const connected = ref<boolean | null>(false);
const interfaceMetrics = metrics(props.profile.id);
const interfaceMetrics = metrics(props.profile.id, 3000);

const handleDaemonError = (err: Error, msg: string) => {
console.log(msg, err);
Expand Down
2 changes: 0 additions & 2 deletions src/pages/MainPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,6 @@ export default defineComponent({
});
};
console.log(networks);
return {
networks,
filePickerRef,
Expand Down

0 comments on commit 786255a

Please sign in to comment.