Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,6 @@ void it_captures_console_output() {
assertThat(stderrWriter.toString()).startsWith("Unknown option: '--bogus'");
}

@Test
void structured_appender_works_with_project_name() throws IOException {
Path outputFile = Files.createTempFile("codemodder", ".out");
writeLogMessageToFile(outputFile, "cloud9");
String output = Files.readString(outputFile);
assertThat(output).contains("\"project_name\":\"cloud9\"");
}

@Test
void structured_appender_works_without_project_name() throws IOException {
Path outputFile = Files.createTempFile("codemodder", ".out");
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ java-security-toolkit-xstream = "1.0.2"
javax-inject = "1"
jtokkit = "1.1.0"
commons-jexl = "3.2.1"
logback = "1.4.5"
logback = "1.5.18"
maven = "3.8.7"
openai = "0.14.0"
picocli = "4.7.0"
Expand Down
Loading