瀏覽代碼

bit of logging

Karl Hudgell 6 月之前
父節點
當前提交
375a8261ae
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      main.py

+ 3 - 1
main.py

@@ -37,7 +37,9 @@ if len(sys.argv) > 1:
                 update_disc(client, {"type": "album", "id": "EJECT"})
             elif json_str == "PLAY":
                 control_player(client, "PLAY")
+            else:
+                print(f"Can't process {json_str}")
         except Exception:
             print(f"Invalid JSON format: {e}")
 else:
-    print("No JSON argument passed, running default control_player action.")
+    print("No Command or Track Info Passed")