Skip to content

Commit 71d7a95

Browse files
FUSE: do not hide exceptions
1 parent 769e5e5 commit 71d7a95

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/borg/fuse.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ def fuse_main():
5757
except KeyboardInterrupt:
5858
return SIGINT
5959
except: # noqa
60+
logger.exception("Exception in fuse_main:")
6061
return -1 # avoid colliding with signal numbers
6162
else:
6263
return None

0 commit comments

Comments
 (0)