- Timestamp:
- 04/17/13 13:53:31 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HivePerformance/sources/HeuristicLab.Services.Hive.DataAccess/3.3/TransactionManager.cs
r9257 r9369 21 21 22 22 using System; 23 using System.IO; 23 24 using System.Transactions; 24 25 … … 37 38 n--; // probably deadlock situation, let it roll back and repeat the transaction n times 38 39 LogFactory.GetLogger(typeof(TransactionManager).Namespace).Log(string.Format("Exception occured, repeating transaction {0} more times. Details: {1}", n, e.ToString())); 40 var log = new StreamWriter(@"C:\Temp\AbortedTransactions.log", true); 41 log.WriteLine(DateTime.Now + ": Transaction aborted: " + n + " (" + e.Message + ")"); 42 log.WriteLine(e.StackTrace); 43 log.Close(); 39 44 if (n <= 0) throw; 40 45 }
Note: See TracChangeset
for help on using the changeset viewer.