Follow this procedure to enable SQL logging and exceptions in PM Compass.
To enable SQL logging and exceptions:
Create the folder to store logging.
Locate the web.config file, which is located in the Web folder of the PM Compass installation location.
Open the web.config file using Notepad or any other text editor.
In the <appSettings> section, add or locate the following lines:
<add key="SQLLogDirectory" value="<log path>" />
<add key="SQLLogging" value="<Y/N>" />
In the web\bin directory, open the Deltek.PMCompass.ProcessServer.Server.exe.config file.
Directly beneath the <configSections> element, add an <appSettings> element if it is not already available. otherwise,simply add the following keys under the <appSettings> section. Your end result should loo like the following:
<configSections>
sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="Deltek.PMCompass.ProcessServer.Server.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
</configSections>
<appSettings>
<add key="SQLLogDirectory" value=<"log path"> />
<add key="SQLLogging" value="<Y/N>" />
</appSettings>
Restart IIS by performing the following actions:
a. On the Start menu, click Run.
b. Enter inetmgr and click OK to open IIS.
c. Locate the PM Compass web application and restart it. By default, this is under Default Web Site.