(String filename)
| 49 | } |
| 50 | |
| 51 | public String outputToFile(String filename) throws Exception { |
| 52 | if (filename == null) { |
| 53 | |
| 54 | filename = String.join(File.separator, this.log_dir, createFileName()); |
| 55 | } |
| 56 | StringBuilder sb = loggingProcess(); |
| 57 | Utils.writefile(filename, sb.toString().getBytes()); |
| 58 | return filename; |
| 59 | } |
| 60 | |
| 61 | /* |
| 62 | * ロギングのフォーマットを決定する部分 |
no test coverage detected