
Hi, I'm wondering if there is a way to log the server output for Yesod. I am currently getting an error of "Failed to load resource: the server responded with a status of 500 (Internal Server Error)" and I have no idea what is causing the issue; I don't know if the server knows, but I'd like to find out. Any help would be appreciated. Thanks! Alexandros

I use a wrapper shell script that redirects stdout and stderr from the
Yesod CGI application to a file...crude but it has served my purposes
pretty well.
Alex
On Fri, Dec 3, 2010 at 4:08 PM, Alexandros Salazar
Hi, I'm wondering if there is a way to log the server output for Yesod. I am currently getting an error of "Failed to load resource: the server responded with a status of 500 (Internal Server Error)" and I have no idea what is causing the issue; I don't know if the server knows, but I'd like to find out. Any help would be appreciated. Thanks! Alexandros _______________________________________________ web-devel mailing list web-devel@haskell.org http://www.haskell.org/mailman/listinfo/web-devel

Well, my issue is that I found the server message cryptic and I was
wondering if it had any other output. Right now stderr and stdout go to the
console, and the console didn't show anything when that error occurred. I'm
wondering if there's the equivalent of a "verbose" mode.
Thanks,
Alexandros
On Fri, Dec 3, 2010 at 8:02 PM, Alexander Dunlap wrote: I use a wrapper shell script that redirects stdout and stderr from the
Yesod CGI application to a file...crude but it has served my purposes
pretty well. Alex On Fri, Dec 3, 2010 at 4:08 PM, Alexandros Salazar Hi,
I'm wondering if there is a way to log the server output for Yesod. I am
currently getting an error of "Failed to load resource: the server
responded
with a status of 500 (Internal Server Error)" and I have no idea what is
causing the issue; I don't know if the server knows, but I'd like to find
out.
Any help would be appreciated. Thanks!
Alexandros
_______________________________________________
web-devel mailing list
web-devel@haskell.org
http://www.haskell.org/mailman/listinfo/web-devel

I think we'll need a little more information: what backend are you
running Yesod with? If it's CGI or FastCGI, what frontend server are
you using? Any other information on your setup, and any other error
messages you've seen, would be useful.
Michael
On Sat, Dec 4, 2010 at 8:57 AM, Alexandros Salazar
Well, my issue is that I found the server message cryptic and I was wondering if it had any other output. Right now stderr and stdout go to the console, and the console didn't show anything when that error occurred. I'm wondering if there's the equivalent of a "verbose" mode. Thanks, Alexandros
On Fri, Dec 3, 2010 at 8:02 PM, Alexander Dunlap
wrote: I use a wrapper shell script that redirects stdout and stderr from the Yesod CGI application to a file...crude but it has served my purposes pretty well.
Alex
On Fri, Dec 3, 2010 at 4:08 PM, Alexandros Salazar
wrote: Hi, I'm wondering if there is a way to log the server output for Yesod. I am currently getting an error of "Failed to load resource: the server responded with a status of 500 (Internal Server Error)" and I have no idea what is causing the issue; I don't know if the server knows, but I'd like to find out. Any help would be appreciated. Thanks! Alexandros _______________________________________________ web-devel mailing list web-devel@haskell.org http://www.haskell.org/mailman/listinfo/web-devel
_______________________________________________ web-devel mailing list web-devel@haskell.org http://www.haskell.org/mailman/listinfo/web-devel

Right now it's all development, so I'm just running the simple-server
script. The error ended up being a sqlite-related error, but nothing
was output to the console. Do I need to switch to a production
backend?
Alexandros
On Dec 4, 2010, at 12:02, Michael Snoyman
I think we'll need a little more information: what backend are you running Yesod with? If it's CGI or FastCGI, what frontend server are you using? Any other information on your setup, and any other error messages you've seen, would be useful.
Michael
On Sat, Dec 4, 2010 at 8:57 AM, Alexandros Salazar
wrote: Well, my issue is that I found the server message cryptic and I was wondering if it had any other output. Right now stderr and stdout go to the console, and the console didn't show anything when that error occurred. I'm wondering if there's the equivalent of a "verbose" mode. Thanks, Alexandros
On Fri, Dec 3, 2010 at 8:02 PM, Alexander Dunlap
wrote: I use a wrapper shell script that redirects stdout and stderr from the Yesod CGI application to a file...crude but it has served my purposes pretty well.
Alex
On Fri, Dec 3, 2010 at 4:08 PM, Alexandros Salazar
wrote: Hi, I'm wondering if there is a way to log the server output for Yesod. I am currently getting an error of "Failed to load resource: the server responded with a status of 500 (Internal Server Error)" and I have no idea what is causing the issue; I don't know if the server knows, but I'd like to find out. Any help would be appreciated. Thanks! Alexandros _______________________________________________ web-devel mailing list web-devel@haskell.org http://www.haskell.org/mailman/listinfo/web-devel
_______________________________________________ web-devel mailing list web-devel@haskell.org http://www.haskell.org/mailman/listinfo/web-devel

Yesod would by default send the error message to the client. (You can
override this in the Yesod typeclass, but that's not really our point
here.) I *think* your web browser is hiding the real error message
from you and giving you a generic 500 response. Are you using
Chrom(ium) by any chance?
Michael
On Mon, Dec 6, 2010 at 1:06 AM, Alexandros Salazar
Right now it's all development, so I'm just running the simple-server script. The error ended up being a sqlite-related error, but nothing was output to the console. Do I need to switch to a production backend?
Alexandros
On Dec 4, 2010, at 12:02, Michael Snoyman
wrote: I think we'll need a little more information: what backend are you running Yesod with? If it's CGI or FastCGI, what frontend server are you using? Any other information on your setup, and any other error messages you've seen, would be useful.
Michael
On Sat, Dec 4, 2010 at 8:57 AM, Alexandros Salazar
wrote: Well, my issue is that I found the server message cryptic and I was wondering if it had any other output. Right now stderr and stdout go to the console, and the console didn't show anything when that error occurred. I'm wondering if there's the equivalent of a "verbose" mode. Thanks, Alexandros
On Fri, Dec 3, 2010 at 8:02 PM, Alexander Dunlap
wrote: I use a wrapper shell script that redirects stdout and stderr from the Yesod CGI application to a file...crude but it has served my purposes pretty well.
Alex
On Fri, Dec 3, 2010 at 4:08 PM, Alexandros Salazar
wrote: Hi, I'm wondering if there is a way to log the server output for Yesod. I am currently getting an error of "Failed to load resource: the server responded with a status of 500 (Internal Server Error)" and I have no idea what is causing the issue; I don't know if the server knows, but I'd like to find out. Any help would be appreciated. Thanks! Alexandros _______________________________________________ web-devel mailing list web-devel@haskell.org http://www.haskell.org/mailman/listinfo/web-devel
_______________________________________________ web-devel mailing list web-devel@haskell.org http://www.haskell.org/mailman/listinfo/web-devel
_______________________________________________ web-devel mailing list web-devel@haskell.org http://www.haskell.org/mailman/listinfo/web-devel
participants (3)
-
Alexander Dunlap
-
Alexandros Salazar
-
Michael Snoyman