Skip to content

Commit 9ce30c3

Browse files
committed
Fix incorrect log message
1 parent 67f12fc commit 9ce30c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java_runtime/src/classes/java/io/string_writer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ impl StringWriter {
5757
}
5858

5959
async fn to_string(jvm: &Jvm, _: &mut RuntimeContext, this: ClassInstanceRef<Self>) -> Result<ClassInstanceRef<String>> {
60-
tracing::debug!("java.io.StringWriter::to_string({:?})", &this);
60+
tracing::debug!("java.io.StringWriter::toString({:?})", &this);
6161

6262
let buf = jvm.get_field(&this, "buf", "Ljava/lang/StringBuffer;").await?;
6363

0 commit comments

Comments
 (0)