1
vote
5answers
58 views
What do you think about returning the logging sentence
I have this java code:
if(isNull(office) || isNull(pricelist)) {
log.warn("The document {0}-{1} is not valid.",codDoc,numDoc);
return null;
}
Do you think it is ok if I …
0
votes
0answers
39 views
Are mysql bins safe to remove? [closed]
They are taking up too much space:
/var/lib/mysql/jiaoyou-slow.log: 53M
/var/lib/mysql/mysql-bin.000005: 68M
/var/lib/mysql/mysql-bin.000003: 1.1G
/var/lib/mysql/mysql-bin.000007: …
0
votes
0answers
62 views
How to clear linux logs? [closed]
The disk is nearly full,how to investigate which files are occupying most space?
EDIT
I found most space are taken by mysql bin log:
/var/lib/mysql/jiaoyou-slow.log: 53M
/var/li …
1
vote
1answer
46 views
Configuring Grails to mail all exceptions generated in the production environment
Question:
How do I configure Grails to send an e-mail with all log4j error messages (including exceptions) generated in the production environment?
Worth noting:
This questio …
0
votes
1answer
14 views
Wix CustomAction session.Log not working
I'm using Wix to setup a Windows Installer .msi file. I have a CustomAction that sets up a ScheduledTask, and in the CustomAction, I've put in some session.Log statements.
If I b …
0
votes
2answers
22 views
Error while exiting cherrypy server
Guys, I am getting following error while exiting cherrypy server. What is this error about?
2009-11-04 09:32:35,015 WARNING Error in atexit._run_exitfuncs:
2009-11-04 09:32:35,01 …
0
votes
1answer
17 views
Disable boto logging without modifying the boto files.
I am using the Boto library to talk to AWS. I want to disable logging. (Or redirect to /dev/null or other file). I cant find an obvious way to do this. I tried this, but that doesn …
0
votes
2answers
13 views
Log4J not providing correct source info.
I am using log4j for traces.
I am using the following pattern for my trace:
<layout class="org.apache.log4j.PatternLayout">
<param name="ConversionPattern" value="%d{d …
4
votes
2answers
163 views
Python logging using a decorator
This is the first example we meet when we face with decorators. But I'm not able to realize what exactly I would like.
A simple decorator named LOG. It should work like this:
@LO …
0
votes
1answer
40 views
Is there a web-based log-tailing application ?
I have been using BareTail for low-footprint log reading, and it works wonderfully. In particular, I like that it can consume very large large files, detect changes to those files, …
0
votes
1answer
17 views
Exceptions and IDispatchMessageInspector
I'm using IDispatchMessageInspector to inspect request/response messages in my WCF service and log some data to our logging database. I also have a custom error handler which catch …
2
votes
4answers
93 views
Log every SQL query to database in Rails
I want to save to a log file some SQL query rails performs, (namely the CREATE, UPDATE and DELETE ones)
therefore I need to intercept all queries and then filter them maybe with so …
70
votes
51answers
4k views
Is a debugger the mother of all evil?
Some say that a debugger is the mother of all evil. What do you think of this approach?
I have a friend at work, a colleague, who's completely against using a debugger whatsoever. …
0
votes
2answers
41 views
Logging events in Python; How to log events inside classes?
Hello guys.
I built (just for fun) 3 classes to help me log some events in my work.
here are them:
class logMessage:
def __init__(self,objectName,message,messageType):
…
2
votes
5answers
53 views
Logging *Business* Events - use logging framework?
Hi,
Something here doesn't feel right to me here, and so I would like the community's input - perhaps I am approaching this in the wrong way....
Q: Is is appropriate to use tradi …
