For the MS SQL data layer I will add logging in the Execute* methods of SQLParamterHelper like this:
if (log.IsDebugEnabled) { log.Debug("ExecuteReader " + commandText); }
so one could enable this logging by setting the log level in the log4net.config to DEBUG and it will log the command text which is only going to be the stored procedure name.