You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
I have an SQL stored procedure which prints a line when an exception occurs. But I am not getting any print statements in the Flyway logs, even though the DEBUG mode is ON.
BEGIN TRANSACTION
IF OBJECT_ID('dbo.sp_Test') IS NOT NULL
BEGIN
BEGIN TRY
EXEC dbo.sp_Test
END TRY
BEGIN CATCH
PRINT 'Error occured';
END CATCH
END
COMMIT TRANSACTION
Flyway version: 2.0.3
DBMS Type: SQlServer 2008
Request you to please provide a fix for this issue as it is necessary to track the status of executed scripts.
Original author: kavithap...@gmail.com (May 27, 2013 05:49:27)
I have an SQL stored procedure which prints a line when an exception occurs. But I am not getting any print statements in the Flyway logs, even though the DEBUG mode is ON.
BEGIN TRANSACTION
IF OBJECT_ID('dbo.sp_Test') IS NOT NULL
BEGIN
BEGIN TRY
EXEC dbo.sp_Test
END TRY
BEGIN CATCH
PRINT 'Error occured';
END CATCH
END
COMMIT TRANSACTION
Flyway version: 2.0.3
DBMS Type: SQlServer 2008
Request you to please provide a fix for this issue as it is necessary to track the status of executed scripts.
Original issue: http://code.google.com/p/flyway/issues/detail?id=501
The text was updated successfully, but these errors were encountered: