diff --git a/QControlKit/QBrowser.cs b/QControlKit/QBrowser.cs
index def1cb4..5987afb 100644
--- a/QControlKit/QBrowser.cs
+++ b/QControlKit/QBrowser.cs
@@ -38,7 +38,6 @@ namespace QControlKit
_log.Debug($"found host {zeroconfHost.IPAddress}:{zeroconfHost.DisplayName}");
foreach (var service in zeroconfHost.Services)
{
- _log.Debug($"found {service.Key}:{service.Value}");
if (service.Key.Equals(QBonjour.TCPService))
{
diff --git a/QControlKit/QClient.cs b/QControlKit/QClient.cs
index 7f52ff3..b391ced 100644
--- a/QControlKit/QClient.cs
+++ b/QControlKit/QClient.cs
@@ -62,7 +62,6 @@ namespace QControlKit
public void sendMessage(string address, params object[] args)
{
tcpClient.Send(new OscMessage(address, args));
- _log.Debug($"send message {address} : {args}");
}
private void ProcessMessage(object source, MessageEventArgs args)
@@ -70,9 +69,6 @@ namespace QControlKit
QMessage message = new QMessage(args.Message);
- Log.Verbose(message.ToString());
-
-
if (message.IsReply)
{
JToken data = message.data;
@@ -115,8 +111,6 @@ namespace QControlKit
}
else if (message.IsConnect)
{
- _log.Verbose(message.data.ToString());
- _log.Verbose("Status:" + message.status.ToString());
if (message.status.ToString().Equals("ok"))
OnWorkspaceConnected(message.status.ToString(),message.data.ToString());
else
@@ -189,7 +183,7 @@ namespace QControlKit
protected virtual void OnCueListsUpdated(JToken response)
{
- _log.Debug($"Cue Lists Updated");
+ _log.Debug("Cue Lists Updated");
CueListsUpdated?.Invoke(this, new QCueListsUpdatedArgs { data = response });
}
@@ -213,19 +207,19 @@ namespace QControlKit
protected virtual void OnWorkspaceLightDashboardUpdated()
{
- _log.Debug($"Workspace Light Dashboard Updated");
+ _log.Debug("Workspace Light Dashboard Updated");
WorkspaceLightDashboardUpdated?.Invoke(this, new QWorkspaceLightDashboardUpdatedArgs());
}
protected virtual void OnQLabPreferencesUpdated(string key)
{
- _log.Debug($"QLab Preferences Updated");
+ _log.Debug("QLab Preferences Updated");
QLabPreferencesUpdated?.Invoke(this, new QQLabPreferencesUpdatedArgs { key = key });
}
protected virtual void OnWorkspaceDisconnected()
{
- _log.Debug($"Workspace Disconnected");
+ _log.Debug("Workspace Disconnected");
WorkspaceDisconnected?.Invoke(this, new QWorkspaceDisconnectedArgs());
}
diff --git a/QControlKit/QControlKit.csproj b/QControlKit/QControlKit.csproj
index 966509d..85fbb5e 100644
--- a/QControlKit/QControlKit.csproj
+++ b/QControlKit/QControlKit.csproj
@@ -6,7 +6,7 @@
Joel Wetzell
1.0.0-devel
true
- 0.0.32
+ 0.0.33
QControlKit
MIT
Unofficial C# port of Figure53's QLabKit.objc
diff --git a/QControlKit/QCue.cs b/QControlKit/QCue.cs
index 83c3f5b..0dbe662 100644
--- a/QControlKit/QCue.cs
+++ b/QControlKit/QCue.cs
@@ -163,7 +163,6 @@ namespace QControlKit
QCue cue = childCuesUIDMap[aUid];
- //_log.Debug($"Removing Child Cue From {listName} : {cue.uid} + {cue.listName}");
childCues.Remove(cue);
childCuesUIDMap.Remove(aUid);
}
@@ -640,8 +639,6 @@ namespace QControlKit
{
bool cueUpdated = false;
- _log.Verbose($"updatePropertiesWithDictionary() Called for cue");
-
//TODO: pretty sure this is done
JObject dictObj = (JObject)dict;
List propertiesUpdated = new List();
@@ -650,14 +647,12 @@ namespace QControlKit
JToken value = obj.Value;
if (obj.Key.Equals(QOSCKey.Cues))
{
- //_log.Debug($"Cues OSC Key found in update message...updating child cues");
if (value.Type != JTokenType.Array)
continue;
updateChildCuesWithPropertiesArray(value, false);
}
else if(obj.Key.Equals(QOSCKey.Children) && IsGroup)
{
- //_log.Debug($"Children OSC Key found in update message for {uid} ...updating child and removing deleted ones.");
if (value.Type != JTokenType.Array)
continue;
updateChildCuesWithPropertiesArray(value, true);
@@ -671,7 +666,6 @@ namespace QControlKit
{
cueUpdated = true;
propertiesUpdated.Add(obj.Key);
- //_log.Debug($"cue property {obj.Key} updated with {obj.Value}");
}
}
}
@@ -1005,7 +999,7 @@ namespace QControlKit
}
else
{
- _log.Verbose($"parent cue with id: {parentID} can't be found this could be a problem");
+ _log.Error($"parent cue with id: {parentID} can't be found this could be a problem");
}
}
CuePropertiesUpdated?.Invoke(this, new QCuePropertiesUpdatedArgs { properties = properties });
diff --git a/QControlKit/QWorkspace.cs b/QControlKit/QWorkspace.cs
index aa33b31..3211e7a 100644
--- a/QControlKit/QWorkspace.cs
+++ b/QControlKit/QWorkspace.cs
@@ -575,7 +575,6 @@ namespace QControlKit
if (cue.ignoreUpdates)
{
- _log.Verbose($"Skipping updatePropertiesWithDictionary for cue: {args.cueID} because of ignoreUpdates setting");
return;
}
diff --git a/QControlKit/SharpOSC/OscPacket.cs b/QControlKit/SharpOSC/OscPacket.cs
index 47d775c..c396b23 100644
--- a/QControlKit/SharpOSC/OscPacket.cs
+++ b/QControlKit/SharpOSC/OscPacket.cs
@@ -26,8 +26,6 @@ namespace SharpOSC
private static OscMessage parseMessage(byte[] msg)
{
int index = 0;
- //Log.Debug("Raw ASCII DATA: " + System.Text.Encoding.ASCII.GetString(msg));
- //Log.Debug("Raw UTF-8 DATA: " + System.Text.Encoding.UTF8.GetString(msg));
string address = null;
char[] types = new char[0];
List