Skip to content

Commit

Permalink
Add error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
absidue committed Jul 15, 2024
1 parent e26c506 commit 0f41a5f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/linux-accent-color.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ async function ubuntu() {
default:
return null
}
} catch {
} catch (e) {
console.error(e)
return null
}
}
Expand Down Expand Up @@ -121,7 +122,8 @@ async function gnomeCustomAccentColorExtension() {
default:
return null
}
} catch {
} catch (e) {
console.error(e)
return null
}
}
Expand Down

0 comments on commit 0f41a5f

Please sign in to comment.