I noticed in a code review that one developer added PRINT statements throughout many SQL Server stored procedures.
These stored procedures are executed from a ASP.NET website, using SqlClient.
Is there any performance penalty to having these PRINT statement in the code? Or will they automatically be skipped when the procs are called from Sql Client via ASP.NET?
I'm running Sql Server 2005.