How to: Write to the Activity Log (C#)

VSPackages can write messages to the activity log. This feature is especially useful for debugging VSPackages in retail environments.

To write an entry to the activity log

  1. Insert this code in the Initialize method or in any other method except the VSPackage constructor:

    This code gets the SVsActivityLog service and casts it to an IVsActivityLog interface. LogEntry writes an informational entry into the activity log using the current cultural context.

  2. In the Visual Studio Command Window, start devenv.exe with the /log switch. Make sure that you add the appropriate /rootsuffix argument to run in the registry root where the VSPackage is registered, for example: **devenv /rootsuffix **Exp /log.

  3. Load the VSPackage.

To examine the activity log

  1. Find the activity log.

    By default, the location is <CURRENTUSERPROFILE>\Application Data\Microsoft\VisualStudio\8.0Exp\ActivityLog.XML.

  2. Open the activity log with any text editor.

    Following is a typical entry:

    50  Entering initializer for: Company.MyPackage.MyPackage ...
    

Robust Programming

You should obtain the activity log just before writing to it. Do not cache or save the activity log for future use.

Because the activity log is a service, the activity log is unavailable in the VSPackage constructor.

See Also

Tasks

How to: Troubleshoot VSPackages

Reference

IVsActivityLog

__ACTIVITYLOG_ENTRYTYPE

Other Resources

VSPackages