https://bugs.kde.org/show_bug.cgi?id=449136
ninj...@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ninj...@gmail.com --- Comment #1 from ninj...@gmail.com --- Unless I'm misunderstanding something, not a konsole/yakuake issue. Backgrounding doesn't prevent a process from printing to the terminal (unless tostop is set, but it typically isn't set. See the output of "stty -a"). To prevent logs from getting printed, they should be redirected, e.g: gedit foo.txt >/dev/null 2>&1 & or gedit foo.txt >& /dev/null & # (if your shell supports that) or gedit foo.txt 2> /dev/null & # (if you only want stderr redirected) -- You are receiving this mail because: You are watching all bug changes.