From 042de68ee53d118dbe352431c981acf0a6574246 Mon Sep 17 00:00:00 2001 From: om Date: Thu, 29 Jun 2006 14:23:35 +0000 Subject: This already adds the file and line number itself, call do_log() rather than log() then git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4084 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/inspircd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/inspircd.h b/include/inspircd.h index 726d77533..8be2874dc 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -42,7 +42,7 @@ */ #define IS_SINGLE(x,y) ( (*x == y) && (*(x+1) == 0) ) -#define DELETE(x) { log(DEBUG,"%s:%d: delete()",__FILE__,__LINE__); if (x) { delete x; x = NULL; } else log(DEBUG,"Attempt to delete NULL pointer!"); } +#define DELETE(x) { do_log(DEBUG,"%s:%d: delete()",__FILE__,__LINE__); if (x) { delete x; x = NULL; } else log(DEBUG,"Attempt to delete NULL pointer!"); } template inline std::string ConvToStr(const T &in) { -- cgit v1.2.3