aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Synchronization
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-02-28 11:42:21 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-02-28 11:42:21 +0200
commitc726e1f7697d9f0fe8cff387dc64dd00c4980b82 (patch)
tree52d91153ee05a32a8ffcd42c4a9220cb7a517bca /Software/Visual_Studio/Tango.Synchronization
parent2f70caaf340063f90529c3302f2f2a78dda9d40c (diff)
downloadTango-c726e1f7697d9f0fe8cff387dc64dd00c4980b82.tar.gz
Tango-c726e1f7697d9f0fe8cff387dc64dd00c4980b82.zip
Change LogManager to Instance.
Diffstat (limited to 'Software/Visual_Studio/Tango.Synchronization')
-rw-r--r--Software/Visual_Studio/Tango.Synchronization/Conversion/SqlServerToSQLiteConverter.cs2
-rw-r--r--Software/Visual_Studio/Tango.Synchronization/Local/LocalDBComparer.cs2
-rw-r--r--Software/Visual_Studio/Tango.Synchronization/Remote/RemoteDBComparer.cs1
3 files changed, 5 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Synchronization/Conversion/SqlServerToSQLiteConverter.cs b/Software/Visual_Studio/Tango.Synchronization/Conversion/SqlServerToSQLiteConverter.cs
index 360198320..de961e24d 100644
--- a/Software/Visual_Studio/Tango.Synchronization/Conversion/SqlServerToSQLiteConverter.cs
+++ b/Software/Visual_Studio/Tango.Synchronization/Conversion/SqlServerToSQLiteConverter.cs
@@ -18,6 +18,8 @@ namespace Tango.Synchronization.Conversion
/// <remarks>The class knows how to convert table and index structures only.</remarks>
public class SqlServerToSQLiteConverter
{
+ private LogManager LogManager = LogManager.Default;
+
#region Public Properties
/// <summary>
/// Gets a value indicating whether this instance is active.
diff --git a/Software/Visual_Studio/Tango.Synchronization/Local/LocalDBComparer.cs b/Software/Visual_Studio/Tango.Synchronization/Local/LocalDBComparer.cs
index 4f19e785f..4a6a85d0e 100644
--- a/Software/Visual_Studio/Tango.Synchronization/Local/LocalDBComparer.cs
+++ b/Software/Visual_Studio/Tango.Synchronization/Local/LocalDBComparer.cs
@@ -15,6 +15,8 @@ namespace Tango.Synchronization.Local
/// <seealso cref="System.IDisposable" />
public class LocalDBComparer : IDBComparer
{
+ private LogManager LogManager = LogManager.Default;
+
/// <summary>
/// Used to notify about the comparer progress using text messages.
/// </summary>
diff --git a/Software/Visual_Studio/Tango.Synchronization/Remote/RemoteDBComparer.cs b/Software/Visual_Studio/Tango.Synchronization/Remote/RemoteDBComparer.cs
index d91e77cda..42c97a70b 100644
--- a/Software/Visual_Studio/Tango.Synchronization/Remote/RemoteDBComparer.cs
+++ b/Software/Visual_Studio/Tango.Synchronization/Remote/RemoteDBComparer.cs
@@ -21,6 +21,7 @@ namespace Tango.Synchronization.Remote
private local.LocalDB _localDB;
private String _machineSerial;
private List<Diff> _diffs;
+ private LogManager LogManager = LogManager.Default;
/// <summary>
/// Used to notify about the comparer progress using text messages.