mirror of
https://github.com/debauchee/barrier.git
synced 2026-05-15 22:01:23 -06:00
[GH-ISSUE #889] barriers does not write to log file without the -f flag. #710
Labels
No labels
HiDPI
bounty
bsd/freebsd
bsd/openbsd
bug
bug
build-infra
cantfix
critical
doc
duplicate
enhancement
fix-available
from git
from release
good first issue
help wanted
installer/package
invalid
linux
macOS
meta
needs testing
pull-request
query
question
regression
regression
v2.4.0
windows
wontfix
work-in-progress
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/barrier#710
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @viktorsmari on GitHub (Sep 28, 2020).
Original GitHub issue: https://github.com/debauchee/barrier/issues/889
Describe the bug
Start 2 terminals side by side
Start
barriersin one:barriers -f --enable-crypto --debug DEBUG --log ./barrier.logTail the log in the other terminal:
tail -f barrier.logWe should see activity in the
tail, for example when we move the mouse to a client screen, which is expected.Stop
barriersin the first terminal, and start again without the -f flagbarriers --enable-crypto --debug DEBUG --log ./barrier.logEverything works normally, except it has stopped logging to the logfile, why?
Expected behavior
It should always write to the log file when using the
--log, or document that it does not output to a log file, if another specific flag is used.