IntelliTrace is a feature of Visual Studio Ultimate that enables application debugging using a historical execution log.
Questions tagged [intellitrace]
127 questions
37
votes
3 answers
Application identity not set Exception
I have just converted a project to VS2010 and I now starting to see Exceptions in my software in IntelliTrace.
One such Exception is 'Application identity is not set', this occurs whenever my software see's something like
string m_AppPath =…

Paul Talbot
- 1,583
- 1
- 14
- 28
28
votes
8 answers
How to log all thrown exceptions?
How to log any exceptions that were thrown and catched? Something like Visual Studio's IntelliTrace do. Or is there a way to integrate InteliTrace into debug version of application and then view its logs?
Update: I'll clarify that a bit. I want…

Poma
- 8,174
- 18
- 82
- 144
18
votes
2 answers
Why can't I inspect local variables with IntelliTrace for VS 2010?
When navigating to previous calls/events during debugging with IntelliTrace, I can't see a snapshot of the value of locally-defined variables. When hovering with the mouse I get the message "Intellitrace data has not been collected". Does anyone…

Andy West
- 12,302
- 4
- 34
- 52
16
votes
10 answers
Visual Studio 2012 crashes every time I try to debug with error CLR20r3
Every time I try to debug one of my apps I get the below error message. Anyone have any ideas? I tried running Visual Studio in safe mode but I get the same thing. I also tried to repair the install and completely reinstall it with no luck :(. …

Chris
- 455
- 1
- 4
- 13
15
votes
4 answers
Open source alternative for "Intellitrace"
Microsoft has recently announced "Intellitrace", a killer feature for VS2010 IMHO.
Basically it records some of the instructions the program ran (specifically function calls), and allows you to easily look through the execution log.
Is there a…

Elazar Leibovich
- 32,750
- 33
- 122
- 169
15
votes
3 answers
Why is DbContext.SaveChanges 10x slower in debug mode
Can somebody explain
Why does DbContext.SaveChanges run ~10x slower in debug mode than production mode?
Is there any way I can speed this up?
In debug mode, my webpage takes 116 seconds to load versus 15 seconds if I start the project without…

Jesse
- 1,673
- 1
- 16
- 22
12
votes
2 answers
IntelliTrace and ADO.NET parameter values
I'm trying to debug Entity Framework, and I can see the DB calls, but parameter values are not shown. I tried a bunch of options, but was not able to see any of the parameters. Is it possible? If not, it would be a total let down.

Greg R
- 1,670
- 4
- 26
- 46
12
votes
1 answer
Debugger and Intellitrace show truncated text in text viewer for long SqlCommand.CommandText
I'm trying to find out what the text is of a select statement made against SQL Server using Entity Framework. The CommandText property under both IntelliTrace and the debugger truncate the text to exactly 4096 characters in the text view. Is there a…

Kit
- 20,354
- 4
- 60
- 103
12
votes
1 answer
Disable IntelliTrace during execution of application
I have an application that loads a lot of metadata when starting up. This is done within a few seconds, but when I turn IntelliTrace on it takes ages. I understand why, but it makes it for me impossible to use IntelliTrace.
What I would like is to…

Ewald Hofman
- 12,688
- 3
- 39
- 44
10
votes
2 answers
WPF Application stalls/freezes after first interaction, like button click
I'm currently experiencing a problem in WPF. The UI loads fine, but whenever the first user interaction is made, such as a button click, the application seems to stall, or example if I had two buttons that display a MessageBox, the first click will…

Gary Connell
- 305
- 4
- 10
9
votes
3 answers
Intellitrace not available for VS 2012 Professional edition?
If so, how do i turn it on? I don't see it under Tools-> Options
If not, anywhere I can download it?

doglin
- 1,651
- 4
- 28
- 38
8
votes
1 answer
Are there any tools similar to intellitrace
Do we have any alternative for intellitrace for visual studio 2012 professional version. It looks like Intellitrace is only available for Visual Studio 2012 Ultimate version.
Thanks

Prince Ashitaka
- 8,623
- 12
- 48
- 71
6
votes
3 answers
How can I prevent a VerificationException when running a test with attached debugger?
Whenever I run either of the following unit test with a debugger attached, I get a VerificationException inside FluentValidation code at this point (will post whole stacktrace later if necessary):
at…

Kit
- 20,354
- 4
- 60
- 103
6
votes
1 answer
MS VS 2010 IntelliTrace for non-Ultimate version? Possible?
I read that IntelliTrace can be used only in MS VS2010 Ultimate and for 32-bit OPs.
Is it possible to install/activcate it also in MS VS2010 Premium with 64-bit OP?
How?
Didn´t found sofare anything in google. :-(
Thxs in advance.

user415876
- 327
- 4
- 19
6
votes
1 answer
Is it possible to extend Intellitrace events?
Specifically, what I'd like to do is raise new events from my apps and libraries, similar to those exposed by ADO.NET.
Real life scenario: a patch for NHibernate that shows executed queries even when they are cached (and, therefore, don't reach the…

Diego Mijelshon
- 52,548
- 16
- 116
- 154