From: <che...@us...> - 2009-10-02 09:34:44
|
Revision: 3100 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3100&view=rev Author: chemelli_sf Date: 2009-10-02 09:34:29 +0000 (Fri, 02 Oct 2009) Log Message: ----------- Changed logged exceptions alignment for better readability Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/AdsTechPTV335Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTVReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionRemoteReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTransTransceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/MicrosoftMceTransceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/UirtTransceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/AdsTechPTV335Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/AdsTechPTV335Receiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/AdsTechPTV335Receiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -143,7 +143,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputReceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputReceiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputReceiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -252,7 +252,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTVReceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTVReceiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTVReceiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -131,7 +131,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionRemoteReceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionRemoteReceiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionRemoteReceiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -308,7 +308,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -272,7 +272,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -225,14 +225,14 @@ { if (ex.NativeErrorCode != 2) { - IrssLog.Error("{0} exception: {1}", Name, ex.NativeErrorCode); + IrssLog.Error("{0,15} exception: {1}", Name, ex.NativeErrorCode); return DetectionResult.DeviceException; } - IrssLog.Debug("{0} exception: {1}", Name, ex.NativeErrorCode); + IrssLog.Debug("{0,15} exception: {1}", Name, ex.NativeErrorCode); } catch (Exception ex) { - IrssLog.Error("{0} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTransTransceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTransTransceiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTransTransceiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -325,7 +325,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -248,7 +248,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -326,14 +326,14 @@ { if (ex.NativeErrorCode != 13) { - IrssLog.Error("{0} exception: {1}", Name, ex.NativeErrorCode); + IrssLog.Error("{0,15} exception: {1}", Name, ex.NativeErrorCode); return DetectionResult.DeviceException; } - IrssLog.Debug("{0} exception: {1}", Name, ex.NativeErrorCode); + IrssLog.Debug("{0,15} exception: {1}", Name, ex.NativeErrorCode); } catch (Exception ex) { - IrssLog.Error("{0} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/MicrosoftMceTransceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/MicrosoftMceTransceiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/MicrosoftMceTransceiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -358,7 +358,7 @@ } catch(Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -271,7 +271,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -339,7 +339,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/UirtTransceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/UirtTransceiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/UirtTransceiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -418,7 +418,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -204,7 +204,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -192,14 +192,14 @@ { if (ex.ErrorCode != -2147221164) { - IrssLog.Warn("{0} exception: {1}", Name, ex.ErrorCode); + IrssLog.Warn("{0,15} exception: {1}", Name, ex.ErrorCode); return DetectionResult.DeviceException; } - IrssLog.Debug("{0} exception: {1}", Name, ex.ErrorCode); + IrssLog.Debug("{0,15} exception: {1}", Name, ex.ErrorCode); } catch (Exception ex) { - IrssLog.Error("{0} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -363,14 +363,14 @@ { if (ex.NativeErrorCode != 13) { - IrssLog.Error("{0} exception: {1}", Name, ex.NativeErrorCode); + IrssLog.Error("{0,15} exception: {1}", Name, ex.NativeErrorCode); return DetectionResult.DeviceException; } - IrssLog.Debug("{0} exception: {1}", Name, ex.NativeErrorCode); + IrssLog.Debug("{0,15} exception: {1}", Name, ex.NativeErrorCode); } catch (Exception ex) { - IrssLog.Error("{0} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |