Skip to content

Commit

Permalink
remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
benkuper committed Oct 7, 2024
1 parent 3ee95b0 commit 4c3cb06
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Runtime/OSCQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ private void wsMessageReceived(WSQuery query, string message)
{
String command = o["COMMAND"].str;
String data = o["DATA"].str;
Debug.Log("Received Command " + command + " > " + data);
//Debug.Log("Received Command " + command + " > " + data);

while (propQueryMapLock)
{
Expand All @@ -301,7 +301,7 @@ private void wsMessageReceived(WSQuery query, string message)

private void wsDataReceived(WSQuery query, byte[] data)
{
Debug.Log("Data received " + data.Length + " bytes");
//Debug.Log("Data received " + data.Length + " bytes");
}

void rebuildDataTree()
Expand Down Expand Up @@ -455,7 +455,7 @@ JSONObject getObjectData(GameObject go, string baseAddress = "")
foreach (MethodInfo info in methods)
{
if (info.IsSpecialName && (info.Name.StartsWith("set_") || info.Name.StartsWith("get_"))) continue; //do not care for accessors
Debug.Log(go.name + " method : " + info);
//Debug.Log(go.name + " method : " + info);

ParameterInfo[] paramInfos = info.GetParameters();
bool requiresArguments = false;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
"repository": "github:benkper/Unity-OSCQuery",
"unity": "2023.2",
"unityRelease": "20f1",
"version": "1.1.8"
"version": "1.1.9"
}

0 comments on commit 4c3cb06

Please sign in to comment.