Hi Chris,
I suggested “massaging” it a bit before using the output:
stack trace into a StringWriter via a PrintWriter, massage it a bit
For example:
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
Exception e = new Exception();
pw.append("Current stack trace:\n");for
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
Felix,
On 10/26/19 16:37, Felix Schumacher wrote:
>
> Am 22.10.19 um 20:07 schrieb Magosányi Árpád:
>> Thank you all for the suggestions.
>>
>> Based on the documentation, my setup should work: The server
>> certificate is already processed and ac
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
Behrang,
On 10/26/19 07:01, Behrang Saeedzadeh wrote:
> I think so. Another option is to create an exception and print the
> stack trace into a StringWriter via a PrintWriter, massage it a bit
> if necessary and add that to the log message.
... whi
Am 22.10.19 um 20:07 schrieb Magosányi Árpád:
> Thank you all for the suggestions.
>
> Based on the documentation, my setup should work: The server certificate
> is already processed and accepted (I know that because I could not get
> it right at the first try). The driver is supposed to work wit
Am 25. Oktober 2019 19:33:19 MESZ schrieb "LoBello,Jeff"
:
>We have a custom tag, FormatDateTag extends
>org.apache.taglibs.standard.tag.common.fmt.FormatDateSupport. It’s
>been working ok for a number of years under tomcat & Oracle JVM. Now,
>we are moving to adoptOpenJDK & we are seeing so
I think so. Another option is to create an exception and print the stack
trace into a StringWriter via a PrintWriter, massage it a bit if necessary
and add that to the log message.
On Sat, 26 Oct. 2019, 9:12 pm Mark Thomas, wrote:
> On October 25, 2019 9:27:21 AM UTC, Behrang Saeedzadeh <
> be
On October 25, 2019 9:27:21 AM UTC, Behrang Saeedzadeh
wrote:
>From Tomcat Embedded Core 9.0.26:
>
>@Override
>protected void doClose() {
>if (log.isDebugEnabled()) {
>log.debug("Calling [" + getEndpoint() + "].closeSocket([" +
>this + "])", new Exception());
>}
>
>Which will log