Skip to content

Commit

Permalink
web: More fixes in the usage of javascript console
Browse files Browse the repository at this point in the history
  • Loading branch information
ancorgs committed May 10, 2024
1 parent 68991a5 commit b5aab6e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions web/src/client/storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ class ProposalManager {
const findDevice = (devices, name) => {
const device = devices.find(d => d.name === name);

if (device === undefined) console.log("Device not found: ", name);
if (device === undefined) console.warn("Device not found: ", name);

return device;
};
Expand Down Expand Up @@ -570,8 +570,6 @@ class ProposalManager {
const systemDevices = await this.system.getDevices();
const productMountPoints = await this.getProductMountPoints();

console.log("system: ", systemDevices);

return {
settings: {
...settings,
Expand Down

0 comments on commit b5aab6e

Please sign in to comment.