Skip to content

Commit

Permalink
[SUREFIRE-1846] Remove Base64 in the Encoder/Decoder and gain the per…
Browse files Browse the repository at this point in the history
…formance for the communication flow: Fork to Plugin
  • Loading branch information
Tibor17 committed Sep 27, 2020
1 parent 32bd56b commit c5319bf
Show file tree
Hide file tree
Showing 20 changed files with 3,570 additions and 1,151 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -912,6 +912,14 @@ public File dumpStreamText( @Nonnull String text )
return InPluginProcessDumpSingleton.getSingleton().dumpStreamText( text, dumpLogDir, forkChannelId );
}

@Nonnull
@Override
public File dumpStreamException( @Nonnull Throwable t )
{
return InPluginProcessDumpSingleton.getSingleton()
.dumpStreamException( t, t.getLocalizedMessage(), dumpLogDir, forkChannelId );
}

@Override
public void logWarningAtEnd( @Nonnull String text )
{
Expand Down
Loading

0 comments on commit c5319bf

Please sign in to comment.