Skip to content
Greg Pakes edited this page Sep 1, 2015 · 6 revisions

TFSNotificationRelay comes with inbuilt tracing for debugging purposes.

Enable logging

Run the following SQL on the tfs_configuration database.

DECLARE @traceId UNIQUEIDENTIFIER = NEWID() 
EXEC prc_CreateTrace @traceId = @traceId, @area = 'TfsNotificationRelay'

The tracing will then show up under Application and Services\Microsoft-Team Foundation Server\Debug in Event Viewer.

If logs are not appearing, you should check the main Application log for errors. This is where errors will appear if config files are invalid or the plugin fails to load.

Clone this wiki locally