Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET Development Server - logfile location

Tags:

rest

asp.net

When trying to get a RESTful WCF service POST to work in ASP.NET we are seeing the following error message in the browser:

The server encountered an error processing the request. See server logs for more details.

We are using the ASP.NET Development Server - does anyone know where it keeps its log files?

like image 484
Richard Ev Avatar asked Jul 21 '09 16:07

Richard Ev


People also ask

How do I find logfile?

Double-click on the log file and it will likely open in a text program by default, or you can choose the program you'd like to use to open the file by using the right-click and “Open With” option. Another option is to use a web browser and open the server log file in HTML.

Where can I find the logs on server?

Overview. Your log files are accessible from the 'logs' directory of your Grid hosting service. The system path for this is /home/00000/logs/, which can be accessed through the File Manager, FTP, or SSH. You can also view them from within your Grid Control Panel.

Where is IIS logs located?

IIS log files are stored by default in the %SystemDrive%\inetpub\logs\LogFiles folder of your IIS server. The folder is configured in the Directory property on the Logging page for either the server or an individual site.


1 Answers

You might want to consider configuring WCF tracing as described in this MSDN article.

like image 180
Joe Avatar answered Sep 19 '22 00:09

Joe