Tagged Questions
0
votes
1answer
36 views
Logging errors in a grails application in the logs
When my Grails application crashes, it shows the error and the stacktrace on the error page because the error.gsp page has the following snippet <g:renderException exception="${exception}" />. ...
0
votes
1answer
25 views
Logging Exceptions - How to make best use of them
I came across something which is new to me today...Logging Exceptions. I saw many people do it, but I don't understand why they do it and how they make best use of them.
catch (Throwable ex) {
...
-2
votes
2answers
72 views
how to print an exception using logger?
I have a situation in which I want to print all the exception caught in catch block using logger.
try {
File file = new File("C:\\className").mkdir();
fh = new ...
3
votes
1answer
47 views
Log4j is not catching exceptions
I am using google app engine and I am having trouble with log4j. Basically I am testing my app and the exceptions are being detected by the dashboard, but not log4j. I am using the following:
catch ...
0
votes
0answers
14 views
Exception and Logs Analysis frameworks or softwares
We have ASP.NET applications and supporting web services in production with lot of traffic.
It logs lot of service calls and Exceptions to MS Sql server.
We want to analyze the logs and exceptions, ...
7
votes
1answer
149 views
How should one log when an exception is triggered?
In a program I recently wrote, I wanted to log when my "business logic" code triggered an exception in third-party or project APIs. ( To clarify, I want to log when use of an an API causes an ...
0
votes
3answers
77 views
Log caught exception with stack trace
If I don't catch an exception in PHP, I get a helpful error message in my error.log file with a stack trace. For example, if I run:
<?php
function foo() {
throw new Exception('Oh no!');
} ...
0
votes
1answer
37 views
Looking for Online Exception Tracker for Java
Does anybody know something like tracemycode.net but for Java?
Looks like Jira has something similar (see Capture Feedback), but it's not the same.
In ideal case with log4j/logback integration.
0
votes
3answers
128 views
Best practice for exception logging in tiered application to avoid duplicate error log messages
In a classic 3 tiered application with a presentation tier, service tier and dao tier what is most appropriate way to ensure concise and unduplicated exception reporting log messages. Imagine your dao ...
2
votes
3answers
60 views
Is it safe to hold on to exception objects?
I am creating a test logger which will include information about any exceptions that are thrown so that they can be displayed properly using a GUI.
Is it safe to use the following construct:
public ...
0
votes
4answers
242 views
Java - Logging Exceptions - how to log as much information as possible?
There's a common problem I've come across a few times when logging Exceptions. There seem to be various different types to deal with. E.g. some wrap other Exceptions, some don't have a message at all ...
2
votes
1answer
318 views
What are your best practices for C++ exception handling? [closed]
I searched the Internet and found a lot of articles about this topic. However, I found there is no complete checklist to verify our code's quality of exception-safety.
So, I want to collect valuable ...
1
vote
2answers
101 views
Exceptions: How can I get the most possible information?
I have an enterprise application that logs exception information whenever one happens to occur. The application is a combination of C#, and C++.net.
I want to get as much information as I can at the ...
0
votes
3answers
67 views
Logging Server Name & Server IP
When an exception is thrown, we log it. However, we are unable to retrieve the server name or I.P address. Not sure if this is the right way to retrieve it.
Log.ServerName = ...
0
votes
1answer
69 views
What are some options for logging .NET exceptions and messages in a cloud environment?
I currently have a web application running on Microsoft's Azure platform with multiple web and worker roles. What I would like to be able to do is log all exceptions and messages to a SAAS product so ...
0
votes
1answer
47 views
Catching boost::exception for logging
I'm using Boost for some in-house codes. In main(), I would like to catch and log all boost::exceptions before exiting the program.
How do I catch boost::exceptions and retrieve the exception ...
1
vote
2answers
288 views
Create log file for Android app
I want to create a log file for my Android app. I need this to debug the random crashes of the applications.
I want to create a function which always get called if there is a unhandelled exception. ...
0
votes
3answers
62 views
Want to Log any exception, Instead showing in the UI as Unexpected Exception
I am using this code:
Logger.getLogger( SampleAction.class.getName() ).log( Level.SEVERE, null, ex );
for logging the exceptions in the Logger.
Along with logging the exception, it is displaying ...
0
votes
1answer
80 views
WCF Issues with catching Inner Exception
I am trying to catch the inner exception of an exception and log it to a SQL Database table. The code I have catches and logs exceptions to the SQL table without issue, but I never get an inner ...
2
votes
1answer
57 views
Log exception in a file using play
I want to log the exceptions in a log file using play 1.
Can anyone tell me how to configure it?
If it is a duplicate question, point it.
TIA
0
votes
1answer
62 views
showing only exception type and its reason not the whole stack-trace when an exception occurs but into log file
I have a problem,I dont want show full stack-trace when an exception occurs but only the exception type. suppose
com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate ...
0
votes
0answers
105 views
Log4j is not logging some stacktraces
I am using a log4j 1.2.16 and root logger with EnhancedPatternLayout for my purposes.
The code is something like that (Catching exceptions in a ScheduledFuture):
try
{
_task.run();
}
...
1
vote
4answers
240 views
Creating a log file only when an error or exceptions occured without using log4j
I want to maintain a log file or txt file ,where I am able to maintain the exception details as well as some other details either in txt or log file.The scenario is like this
try {
.......
} ...
1
vote
1answer
105 views
Python/Django: automatically log when exceptions occur, including request info
I have created a function log_error(request, traceback), which I call in my exceptions. This writes error information to the database. Now, before I open up every one of my views and add this in an ...
6
votes
2answers
123 views
When to log chained exceptions?
I am a green developer trying to get a handle (har-har) on error handling in a large multi-layer java application. There are many situations where I believe that chaining exceptions through several ...
0
votes
1answer
29 views
Exception from which gem
I want a rails 3.2 app to log which gem owns the code, where an exception occur.
Is it possible?
1
vote
5answers
2k views
Java Exception Stacktrace Not Printing
I have the following code:
import org.apache.commons.lang.exception.ExceptionUtils;
public void myMethod() {
try {
// do something
} catch (Exception e) {
...
0
votes
2answers
76 views
Calling System command from java to save a log file
I'm having trouble with calling a system command from Java. I've tried the following:
if (!found) {
dbContents += ";" + getPreviousValue(i, dbContents);
try {
String cmd = "echo ...
0
votes
3answers
447 views
How do I log and retrieve Azure Worker role exceptions?
I have a free account with Azure (90 day trial) and I'm finding that my worker role is erroring out. I don't have any of the monitoring features enabled because I believe they cost money.
Is there ...
1
vote
0answers
48 views
Error-Logging Decorator with separate/isolated exception handling inside a function
Is there a way to write a generic logging-decorator, which logs all exceptions occurring inside a function or method (both the handled and unhandled exceptions), but doesn't affect the exception ...
2
votes
3answers
112 views
What's the best android Log strategy for a team?
We always log the exception when develop android apps. And we want to standardize the formate and strategy to prevent e.printStackTrace() or unnecessary log from being printed?
So what's the best ...
0
votes
0answers
38 views
log an exception myself, just like Rails
If your app raises an exception not caught by your app, then Rails will log it, using it's own rules for when to log, what to log (backtrace clean), how to format the log, etc. And will then present ...
0
votes
1answer
580 views
How to enable exception.log and system.log in Magento database?
In Magento how do I enable exception.log and system.log at the database level?
I know I can do it through admin backend (which I do not want to do).
What value needs to be changed? I assumed that ...
2
votes
3answers
221 views
How do I log exception information to allow troubleshooting?
I'm currently doing maintenance on a Windows service and at certain points in the code there is some exception handling (e.g. in callbacks from timers and other external events):
try {
...
}
catch ...
2
votes
2answers
91 views
Python system log file
I have a script that has been crashing (seemingly) unpredictably. I can't work out how to reproduce it.
Does Python keep a global system log file, so I can go back and look at what exception ...
0
votes
1answer
66 views
Propagate exception stack from ejb 3 to portlet
I have a spring mvc portlet that remotely calls an ejb 3. Now when the ejb throws an exception, on the portal side I just see 'EJB Exception'. I do not have access to the actual ejb 3 logs. So what ...
0
votes
0answers
58 views
Catching EJBAccessException
I have implemented exception class what extends EJBAccessException. Why it writes stack trace to glassfish server log file after it's thrown even I catch it and do nothing in the catch clause? Is it ...
0
votes
1answer
278 views
Starting cassandra on Solaris (SunOS 5.10 sparc) fails with SnappyError
I have downloaded the DataStax build of cassandra (dsc...-bin.tar.gz) and unzipped appropriately onto a Solaris Server machine. After editing configuration directories in accordance to ...
0
votes
2answers
387 views
Spring MVC not logging all exceptions
I have Spring MVC setup to log exceptions using commons logging, but find that some runtime exceptions aren't being logged.
Here's my bean configuration for the default exception resolver provided ...
-2
votes
1answer
138 views
Good Practices in parsing text files in Java
i want to parse a text file that represents a log. i want it to be powerful enough to handle all erros that might occur.. although i am clueless about the best practices and the errors i should ...
0
votes
0answers
66 views
Do ASP.NET or the Windows Event Log Rate Limit?
I'm testing out some error handling in ASP.NET MVC, but my exceptions only get logged around once per minute (at least that's what it looks like).
I have CustomErrors turned on:
<customErrors ...
1
vote
2answers
123 views
How to log all exceptions in python 3
There are a lot of exception I don't want to catch, I want them to stop processing, but, I still want the stack trace in the log file. Is there a way to setup a logger so that it automatically logs ...
0
votes
0answers
126 views
Validation result in log file
I'm trying to fix error in our system to log ValidationResults in log file. We are using WCF Exception Shielding. When the exception occurs, created log file looks like this:
...
0
votes
2answers
107 views
Mystery exceptions during Tomcat startup from Eclipse
Related: Cannot view exceptions thrown during Tomcat startup from Eclipse
I have Eclipse setup to force break on NoClassDefError exceptions. When I start tomcat through Eclipse and my web app is ...
2
votes
3answers
76 views
What is good to do with exception when logging?
Suppose I want to reflect exception in the log.
Should I pass stack trace into log.error() or just Exception's toString()? Or do something better?
How to obtain stack trace string to pass to ...
3
votes
1answer
211 views
Idiomatic way to collect & report multiple exceptions in Python
What have people used to catch, log, and report multiple data validation errors at once in Python?
I'm building an application in Python 3 that first validates input data and then processes it. ...
5
votes
2answers
75 views
How to view exceptions when debugging?
I'm using NLog like this
try
{
// ... some code
}
catch(AException ex)
{
logger.ErrorException(ex.Message, ex);
}
But I want to see the exception when debugging. So I tried:
#if !DEBUG
...
0
votes
1answer
100 views
Xcode doesn't log any exception / assert / error
i'm just stuck into an annoying problem. I have used a framework to get some crash report.
that was just workin fine, but suddently, gdb doesn't log any error.
For example when i type
NSArray* ...
1
vote
1answer
686 views
Python: Display and log runtime errors to console and log file
The script below is writing all errors to both log file and console, except for the raised exception which is only written on console and not on log. How to I get it to write the raised exception to ...
1
vote
4answers
350 views
Preventing Java from printing the stack trace on certain exceptions
I have a security class that throws an AccessDeniedException on a user not being authorized for a certain operation. I made it even neat and put a msg in there with the info I need.
The problem is ...

