Commit bf0c2252e9fc57f962bcea6c190c5a3767f7fe01
1 parent
211a15bde3
Exists in
master
and in
2 other branches
디버깅 메시지 정리
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/gui/oven_control/system.cpp
@@ -35,7 +35,7 @@ void System::setVolume(int percentage) | @@ -35,7 +35,7 @@ void System::setVolume(int percentage) | ||
35 | 35 | ||
36 | last = percentage; | 36 | last = percentage; |
37 | 37 | ||
38 | - QString command = QString("/usr/bin/amixer -c 0 sset 'PCM',0 %1% %1% on").arg(percentage); | 38 | + QString command = QString("/usr/bin/amixer -c 0 sset 'PCM',0 %1% %1% on > /dev/null").arg(percentage); |
39 | system(command.toLocal8Bit().constData()); | 39 | system(command.toLocal8Bit().constData()); |
40 | } | 40 | } |
41 | 41 |