OutputDebugStringはリリースビルド時に呼び出し削除されない

こんな感じで工夫しないと消せない。

#ifndef _DEBUG
#define OutputDebugStringA(x) ((void)0)
#define OutputDebugStringW(x) ((void)0)
#endif


ネタ元