Do you use #if DEBUG in your code? The maintenance developer that comes after you gives zero foiks about what that's for, write code like this:
#if DEBUG
Log.DangerousExpensiveLogging()
#else
if (Env == "PROD"){
throw AppException("Don't deploy if DEBUG mode")
}
#endif