Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add autosave functionality to BasicLogger #13679

Closed
wants to merge 7 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
PMD violation fix
geezer09 committed Nov 8, 2024
commit 5a5f28c8d416c93aa302ac697cfa5f73843d547f
Original file line number Diff line number Diff line change
@@ -127,7 +127,7 @@ private void startAutosave() {

private void autosave() {
if (isLogging() && !isReplaying()) {
File autosaveFile = new File(outputFile.getParent(), "autosave_" + outputFile.getName()); //$NON-NLS-1$
final File autosaveFile = new File(outputFile.getParent(), "autosave_" + outputFile.getName()); //$NON-NLS-1$
try {
write(autosaveFile);
}