summaryrefslogtreecommitdiff
path: root/include/logger.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-04-02 19:52:33 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-04-02 19:52:33 +0000
commit7dadb07a19280936147b91144f27d8528ba35c7c (patch)
tree806ce6c1e2506606b2b88531a9714a0241b521ec /include/logger.h
parent0ba0beb0c465cd7bfbd98b6f51429d3147c362eb (diff)
Fix peavey and w00ts bug they found by removing the nonblocking part of the logger. This stuff was hackish and isnt required. If your hard disk locks up, then you have bigger worries.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9276 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/logger.h')
-rw-r--r--include/logger.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/logger.h b/include/logger.h
index 384e38c1a..79914ac98 100644
--- a/include/logger.h
+++ b/include/logger.h
@@ -38,10 +38,6 @@ class CoreExport FileWriter : public EventHandler
*/
FILE* log;
- /** Buffer of pending log lines to be written
- */
- std::string buffer;
-
/** Number of write operations that have occured
*/
int writeops;
@@ -51,10 +47,6 @@ class CoreExport FileWriter : public EventHandler
*/
FileWriter(InspIRCd* Instance, FILE* logfile);
- /** This returns false, logfiles are writeable.
- */
- virtual bool Readable();
-
/** Handle pending write events.
* This will flush any waiting data to disk.
* If any data remains after the fprintf call,