Index: trunk/FACT++/src/ftmctrl.cc
===================================================================
--- trunk/FACT++/src/ftmctrl.cc	(revision 18951)
+++ trunk/FACT++/src/ftmctrl.cc	(revision 18952)
@@ -305,4 +305,13 @@
                     // This check is only done at startup
                     FTM::StaticData data(fBuffer);
+
+                    if (fIsVerbose)
+                    {
+                        Out() << endl << kBold << "Static data received:" << endl;
+                        Out() << data;
+                        if (fIsHexOutput)
+                            Out() << Converter::GetHex<uint16_t>(data, 16) << endl;
+                    }
+
                     if (!CheckConsistency(data))
                     {
@@ -2489,4 +2498,5 @@
         fFTM.SetHexOutput(conf.Get<bool>("hex-out"));
         fFTM.SetDynamicOut(conf.Get<bool>("dynamic-out"));
+        fFTM.SetDebugTx(conf.Get<bool>("debug-tx"));
 
         // ---------- Setup clock conditioner frequencies ----------
@@ -2739,4 +2749,5 @@
         ("hex-out",       po_bool(),  "Enable printing contents of all printed messages also as hex data.")
         ("dynamic-out",   po_bool(),  "Enable printing received dynamic data.")
+        ("debug-tx",      po_bool(),  "Enable debugging of ethernet transmission.")
 //        ("default-setup", var<string>(), "Binary file with static data loaded whenever a connection to the FTM was established.")
         ;
