summaryrefslogtreecommitdiff
path: root/src/syncevo/Logging.h
diff options
context:
space:
mode:
authorPatrick Ohly <patrick.ohly@intel.com>2013-04-08 21:14:05 +0200
committerPatrick Ohly <patrick.ohly@intel.com>2013-05-06 16:28:13 +0200
commitff2c4584b2874695405eb8e7b1565d3b7fe372fe (patch)
treeff3fa4878478655d2322c71866b15e089b675fb2 /src/syncevo/Logging.h
parentecfceb3f9844d9005050e5040e774e9e4b8c8fe3 (diff)
Logging: remove obsolete isProcessSafe()
The method became obsolete when introducing fork+exec for local syncing. Before that, the method was used to remove unsafe loggers in the child's process. Now exec() does that for us.
Diffstat (limited to 'src/syncevo/Logging.h')
-rw-r--r--src/syncevo/Logging.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/syncevo/Logging.h b/src/syncevo/Logging.h
index 9f665ac2..7d1c878a 100644
--- a/src/syncevo/Logging.h
+++ b/src/syncevo/Logging.h
@@ -221,13 +221,6 @@ class Logger
#endif
;
- /**
- * this logger instance can be used by multiple processes:
- * true for those which write single lines, false
- * for more complicated output like HTML (Synthesis log)
- */
- virtual bool isProcessSafe() const = 0;
-
protected:
static std::string m_processName;
};