Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Commit

Permalink
🔊 Make logging more helpful for messuring stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
trickypr committed Feb 28, 2021
1 parent c9679ed commit 09bb6cb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/backend/background.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let domainsBlocked = {}
* @param details The request info, provided by the requestHandler
*/
const requestHandler = (details: RequestListenerArgs) => {
console.log(details.url)
console.log('Blocked')

if (typeof domainsBlocked[details.url] == 'undefined') {
domainsBlocked[details.url] = 0
Expand Down
8 changes: 5 additions & 3 deletions src/frontend/ui/common/ring.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,18 @@ export const Ring: (props: {

return (
<div
style={{ position: 'absolute', pointerEvents: 'none' }}
style={{
position: 'absolute',
pointerEvents: 'none',
margin: '0 auto',
}}
key={i}
>
<div className={style.dropdown}>
<svg
style={{
height: SIZE,
width: SIZE,
// margin: '0 auto',
display: 'inline',
}}
>
<g>
Expand Down

0 comments on commit 09bb6cb

Please sign in to comment.