CocoaShare/Classes/Dropbox/DropboxSDK/MPOAuth/MPDebug.h

14 lines
241 B
C
Raw Normal View History

2011-02-01 09:51:02 -06:00
//
// MPDebug.h
// MPOAuthConnection
//
// Created by Karl Adam on 09.02.06.
// Copyright 2009 matrixPointer. All rights reserved.
//
#ifdef DEBUG
#define MPLog(...) NSLog(__VA_ARGS__)
#else
#define MPLog(...) do { } while (0)
#endif