Server/FormSelectHarmonyCommand.cs
changeset 253 2dae7a163fff
parent 250 b2121d03f6f0
child 257 3f1d16d233dc
     1.1 --- a/Server/FormSelectHarmonyCommand.cs	Mon Aug 22 13:20:54 2016 +0200
     1.2 +++ b/Server/FormSelectHarmonyCommand.cs	Thu Aug 25 00:42:09 2016 +0200
     1.3 @@ -1,5 +1,6 @@
     1.4  using System;
     1.5  using System.Collections.Generic;
     1.6 +using System.Diagnostics;
     1.7  using System.ComponentModel;
     1.8  using System.Data;
     1.9  using System.Drawing;
    1.10 @@ -73,7 +74,7 @@
    1.11                  HarmonyHub.Function f = tag;
    1.12                  HarmonyHub.Device d = (HarmonyHub.Device)e.Node.Parent.Parent.Tag;
    1.13  
    1.14 -                Console.WriteLine($"Harmony: Sending {f.Name} to {d.Label}...");
    1.15 +                Trace.WriteLine($"Harmony: Sending {f.Name} to {d.Label}...");
    1.16  
    1.17                  await Program.HarmonyClient.SendCommandAsync(d.Id, f.Name);
    1.18              }