* ログファイルに書き込み
* @param file ログファイル名
* @param line ログ内容
*/
public static void log(String filepath, String line){
TextFileHandler r = new TextFileHandler(filepath);
try{
r.appendLine("[" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()) + "] " + line);
} catch (IOException ex) {}
}