0
votes
7answers
54 views
Java custom logger: logging standards or/and best practices
I am developing a framework and I won't the jar to be light weight and independent as much as it can be.
So I wrote my logging class:
import java.util.Date;
import java.util.Prop …
0
votes
2answers
17 views
__unicode__(self) doesn’t get called by logging
Long story short:
# this works as expected:
logging.error(my_object.__unicode__())
# this doesn't:
logging.error(my_object)
Same result with __str__(self).
Why?
EDIT: __str__ …
0
votes
5answers
69 views
How shall I format my logs?
I'm writing a piece of honeypot software that will have extensive logging of interactions with it, I plan to log in plaintext .log files.
I have two questions, from someone who is …
0
votes
3answers
37 views
java wrapper around log4j logger and java.util.logging
I am writing a library. The library can be used by applications that use log4j loggers and java.util.logging loggers.
So, I wrote a quick wrapper class, that encapsulates both log …
0
votes
4answers
21 views
How to get info: The Author/his Comments for the last subversion revision via command line?
I can't seem to find this one!
So say someone like "Joe" (the Author) submits his code into the svn repository with the message "Fixed this bug and that bug yada yada" (his Commen …
2
votes
3answers
27 views
What’s a good way to collect logs from Amazon EC2 instances?
My app is hosted on an Amazon EC2 cluster. Each instance writes events to log files. I need to collect (and data mine) over these logs at the end of each day. What's a recommended …
0
votes
1answer
26 views
How would I robustly log binary or XML using slf4j/log4j/java.util.logging?
After doing logging for many years I have now reached a point where I need to be able to postprocess the log files with the long term goal of using the log files as a "transport me …
0
votes
4answers
67 views
Creating daily logs with Log4j?
What configuration values are needed to setup Log4j to use the following pattern?
MyApp-Mon.log
MyApp-Tue.log
MyApp-Wed.log
Etc
With each file containing the days log.
This sound …
2
votes
3answers
63 views
Overriding log4j settings at deploy time
For an application which is deployed on a large number of machines I took the decision to deploy a standard log4j.xml file with the application package, just to make sure that have …
1
vote
1answer
21 views
Programmatic configuration of Enterprise Library logging block
I've previously used log4net, but my current employer uses Enterprise Library application blocks. I had previously developed unit tests for my core logging classes as follows and …
1
vote
6answers
49 views
cost of logging ip address for user activity
If I were to log user IPs for each function he performs would that slow up the application in any way? For example I might log the last sign in IP, and because the at will be overw …
1
vote
5answers
46 views
Free/Open Source Outgoing traffic monitor/logger that isn’t a firewall?
Hey guys,
I've been tasked with finding a way to log every outgoing request from one of our servers. It cannot be a proxy or firewall of any kind. It simply needs to sit in memory …
1
vote
3answers
84 views
Java: Instantiate or Inheritance?
I am writing a logging service for one of my applications but I am sure many other applications would use this. In that case, would it make sense to make the application extend a c …
0
votes
2answers
27 views
Best logging approach for composite app?
I am creating a Composite WPF (Prism) app with several different projects (Shell, modules, and so on). I am getting ready to implement logging, using Log4Net. It seems there are tw …
5
votes
6answers
89 views
What’s the best practice for centralised logging?
My team has inherited support for 100+ applications. The applications don't have any kind of common architecture, so the ones that do logging usually do it with custom code to loca …
