Add toolbar icons for "Clear log entries"
… I use this all the time and have to reach for the keyboard because that's faster than Edit > Clear > Clear log entries; it's the only thing I find myself using the keyboard for.
… I use this all the time and have to reach for the keyboard because that's faster than Edit > Clear > Clear log entries; it's the only thing I find myself using the keyboard for.
I use fully-qualified classnames as session identifiers, and because the New View modal is quite small, I just see the start of the classnames in the dropdown – I can't tell them apart.
We have conflicting shortcut configurations when using Smartinspect in Delphi with other Third-Party-Tools. Please provide an option to disable/configure the shortcut mappings of Smartinspect Delphi IDE Integration.
1. The registration method for custom protocol should be able to pass in an anonymous function and an agnostic datum (TObject or IInterface), instead of just a class reference. This will allow the creation of protocols that depend on dynamic data, such as logging directly to AWS CloudWatch. One should also be able to register […]
Please update the PE headers of all EXE's and DLL's to enable ASLR and DEP. These are established technologies that help make EXE's and DLL's more secure. With an increased focus on security of programs, some companies will not use third-party products that are not themselves secure.
keyword views rock: I create views when tracking down a bug. it would be incredibly helpful if I could save the configuration of the UI, including views, and then load a config for a particular debugging project
After some critical errors within my application, i like to send an email to the help desk. Within the body, there should be a link to the actual log file in progress. Therefore i need a property (perhaps ActualLogFiles – an IEnumerable) on the session, containing this/these filename(s).
LogWarning, LogError, etc all have icons corresponding to their levels. However, generic calls like LogColored will alway show the Message level icon even if another level (Debug..Fatal) if not overridden by a specific graphic like database results, the appropriate level icon should be displayed.
Doing some automation that will automatically update the redistributable console as part of our own product installs for any of our software packages using it and noticed an issue. The installer has an actual product version number like 3.4.1.5 but for the actual SmartConsole.EXEs, it is always 1.0.0.0. The other product metadata should also be […]
It is not necessary anymore to specify the method name on every call to EnterMethod/LeaveMethod. The CallerMemberName attribute provides the name of the calling method automatically. Try the snippet below. void Main() { MethodNameToBeLogged(); } public void MethodNameToBeLogged() { EnterMethod(); LeaveMethod(); } public void EnterMethod([CallerMemberName] string memberName = "") { Console.WriteLine($"Entering method '{memberName}'"); } public […]