summaryrefslogtreecommitdiff
path: root/vcl/inc/ios
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-01-19 10:44:33 +0200
committerTor Lillqvist <tml@iki.fi>2013-01-19 11:41:33 +0200
commitfcf7f3596054f24bebf767f9cabfc96dfa577480 (patch)
treecc4c62869d611c6f99a6e35accaa96db4b9d28f9 /vcl/inc/ios
parentc228103ce6a5efe60de553073a9b20d977478bf5 (diff)
Use SAL_INFO instead of home-grown msgs_debug
If there is a need to optionally get a thread identifier or the function name into logging output (as msgs_debug did), we should figure out a way to do that in some elegant fashion in the sal logging macros instead of using some local solution in just one place in the code. Yes, the iOS and OS X CoreText code should be de-duplicated. Will happen soon.
Diffstat (limited to 'vcl/inc/ios')
-rw-r--r--vcl/inc/ios/common.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/vcl/inc/ios/common.h b/vcl/inc/ios/common.h
index 209ed6bdc43f..e37804ca3925 100644
--- a/vcl/inc/ios/common.h
+++ b/vcl/inc/ios/common.h
@@ -42,10 +42,4 @@
#endif/* _VCL_IOS_COMMON_H */
-//#define msgs_debug(c,f,...)
-// fprintf(stderr, "%s::%s(%p:%04.4x)\n", this, #c, __func__, 0, __VA_ARGS__ )
-
-#define msgs_debug(c,f,...) \
- fprintf(stderr, "%s::%s(%p:%4.4u)" f "\n", #c, __func__, this, ((unsigned int)pthread_self() & 8191), ##__VA_ARGS__ );
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */