The filehandler tag has no wiki summary.
5
votes
1answer
567 views
Python proper logging with filehandlers
I am using python logging in my django application. A class that connects to a backend api initialises this logger with a filehandler if needed. The class gets instantiated everytime an api call is ...
4
votes
1answer
57 views
Clickonce application and file handler behavior
I have a clickonce application, and I have set up several file handlers for this application (for the sake of this example, I want to handle files with either the .aaa or .bbb extensions).
If I ...
4
votes
1answer
800 views
Android: Open saved file in default app from my app
First off, sorry if this has been asked but I cannot find it. I am downloading documents in my app from a remote resource. Once the document is downloaded, I want to open it for the user. What I want ...
3
votes
5answers
166 views
Is Logging using FileHandler a bottleneck?
I am considering logging business events in a J2EE web application by using Java logging and FileHandler.
I am wondering whether that could cause a performance bottleneck, since many log records will ...
2
votes
2answers
63 views
Perl set file handle based on command line args
I want to read from the default input if data is piped in or a file is provided, but if nothing is given I would like to supply a default for while(<>) to execute on.
Pseudocode:
...
1
vote
2answers
315 views
JavaApplicationStub with CFBundleDocumentTypes
I'm trying to use CFBundleDocumentTypes to associate a custom file extension with my application. As far as I can tell, this seems to "work" -- JavaApplicationStub launches my application when I ...
1
vote
3answers
94 views
How can get a filehandle for a Perl program's output?
I have an encrypted file X1, I have a Perl program P1 that decrypts the X1. I am parsing the decrypted file using a Perl program p2.
X1--P1(decrypter) --> X2(plain text file) --p2(parser) --> ...
0
votes
0answers
54 views
How to let root and named loggers's filehandler log to the same file?
My goal is to use java.util.logging(jdk1.6)
write all logs to the same log file and
do log rotation
can use %u in file pattern to avoid potential file conflict with other program
I had configured ...
0
votes
1answer
114 views
When to close and remove FileHandler with java logging
I am using the java.util.logging API and atatching several FileHandlers to a named logger to write the log messages to specific files. I see that this creates a lck (lock) file for each log file. The ...
0
votes
0answers
68 views
File Handler Android
Is there a way to add a file handler to a log class that extends File? I am new to this and do not really wrap my head around the idea of this. I am coming from the Microsoft side of the fence. I need ...
0
votes
1answer
905 views
adding date to Java util logger fileHandler name
Hi I currently have this in my .properties file:
java.util.logging.FileHandler.pattern = %h/programName%u%g.log
I would also like to append a timestamp / username to this so its easy to identify log ...
0
votes
3answers
668 views
Java FileHandler disable log rotation
I am trying to disable log rotation, for file handler using,
FileHandler fh = new FileHandler
( "path" + "run.log", 1000000, 1, false);
What i want is one log, created for each run i do not want ...