瀏覽代碼

Audio.MenuApplet: Remove debug spam about muting

Andreas Kling 5 年之前
父節點
當前提交
5ddb747038
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      MenuApplets/Audio/main.cpp

+ 0 - 2
MenuApplets/Audio/main.cpp

@@ -12,7 +12,6 @@ public:
     {
         m_audio_client = make<AClientConnection>();
         m_audio_client->on_muted_state_change = [this](bool muted) {
-            dbg() << "Muted state changed: " << muted;
             if (m_audio_muted == muted)
                 return;
             m_audio_muted = muted;
@@ -29,7 +28,6 @@ private:
     {
         if (event.button() != GMouseButton::Left)
             return;
-        dbg() << "set_muted: " << !m_audio_muted;
         m_audio_client->set_muted(!m_audio_muted);
         update();
     }