Skip to content

Commit

Permalink
catch all exceptions in FileTracer
Browse files Browse the repository at this point in the history
  • Loading branch information
Akretsch committed Nov 7, 2023
1 parent 8fc3ece commit 8933d10
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Base64;
import java.util.Base64.Encoder;
import java.util.concurrent.atomic.AtomicLong;
Expand Down Expand Up @@ -115,7 +114,7 @@ public static void logMessage(final PKIMessage msg, final String interfaceName)
}
}
}
} catch (final IOException e) {
} catch (final Exception e) {
LOGGER.error("error writing dump", e);
}
}
Expand Down

0 comments on commit 8933d10

Please sign in to comment.