mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
15 lines
325 B
C
15 lines
325 B
C
![]() |
//
|
||
|
// OSKLogger.h
|
||
|
//
|
||
|
//
|
||
|
// Created by Jared Sinclair on October 10, 2013.
|
||
|
// Copyright (c) 2013 Overshare Kit. All rights reserved.
|
||
|
//
|
||
|
|
||
|
@import Foundation;
|
||
|
|
||
|
#if DEBUG == 1
|
||
|
#define OSKLog(format, ...) NSLog((@"%s [Line %d]\n" format @"\n\n"), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__)
|
||
|
#else
|
||
|
#define OSKLog(...)
|
||
|
#endif
|