これは明らかかもしれませんが、特定のファイルにログを記録するために使用する簡単な例を探していましたorg.apache.commons.logging
(つまり/path/to/my-log.txt
)
public class MyClass {
static Log log = LogFactory.getLog(MyClass.class);
public static void main(String[] args) {
// What to do here to get log to output to a file???
log.info("I want to appear in a specific log file")
}
}