Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

1.I am able to create log files using FileAppender, RollingFileAppender,etc.,

Though All belongs to ASCII [anyone can read], but I want to register my logs as Binary File [ non readable], can anyone help me with the suggestion to create Binary log file for an example code.

point out the main points...

2.also [I have message in log as "Hello" , using %m in PatternLayout getting as Hello package.class

expected only Hello

Thanks in advance.

share|improve this question
Creating non-readable logfiles is as good as creating no log files. – Jacob Jul 26 '11 at 9:01

2 Answers

I would use DataOutputStream BufferedOutputStream and FileOutputStream to write binary files. I assume you want the files to be machine readable rather than non-readable. ;)

Log4j is designed for text files, however you can use its logging levels like.

private static final Log LOG = 
static DataOutputStream out = ... FileOutputStream ...

if(LOG.isDebugEnabled()) {
   // write a debug log to out
}
share|improve this answer
I got it thru coding in java file.. – Gnanam R Aug 5 '11 at 7:09
what is the possible way to do create binary log file in log4jconfig[xml or properties]..? – Gnanam R Aug 5 '11 at 7:10
All the standard loggers are design to log text and only text. If you want to write binary, you have to do this yourself as I suggested. – Peter Lawrey Aug 5 '11 at 7:29
encoding property in the above link for the file config..how to use that.. being beginner I couldn't make that possibly – Gnanam R Aug 5 '11 at 8:37

Its not such a good Idea to do what you wrote, but if you really need to do the following: write an own appender like this:

package de.steamnet.loggingUtils;

import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.apache.log4j.AppenderSkeleton;
import org.apache.log4j.spi.LoggingEvent;

public class BinaryAppender extends AppenderSkeleton {

    FileOutputStream fout;

    public BinaryAppender() throws FileNotFoundException {
        fout = new FileOutputStream("/tmp/somefile.log.bin");
    }

    @Override
    protected void append(LoggingEvent le) {
        String origMessage = le.getLoggerName() + " said: " + le.getMessage();
        byte[] obscure = origMessage.getBytes();
        for(int ii = 0; ii < obscure.length; ii++) {
            if(obscure[ii] == Byte.MAX_VALUE) {
                obscure[ii] = Byte.MIN_VALUE;
            } else {
                obscure[ii] = (byte)(obscure[ii] +1); // thats a really bad idea to create 'nonesense stuff' that way!
            }
        }
        try {
            fout.write(obscure);
        } catch (IOException ex) {
            System.out.println("too bad. File writer bombed.");
        }
    }

    @Override
    public boolean requiresLayout() {
        return false; // we do all layouting in here.
    }

    @Override
    public void close() {
        try {
            fout.close();
        } catch (IOException ex) {
            System.out.println("too bad. could not close it.");
        }
    }

}

Then in your log4j config use this class as appender and you are done with the writing part. for the reading part you again need to read it byte per byte and reduce the byte by one and then load a string from it.

Good luck.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.