8354255: [jittester] Remove TempDir debug output

Backport-of: 1fc1cc5da9
This commit is contained in:
Goetz Lindenmaier
2025-05-21 17:19:48 +00:00
committed by Vitaly Provodin
parent 0feef9f752
commit 542eeb11e5

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2024, 2025, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -47,14 +47,11 @@ public class TempDir {
} catch (IOException e) {
throw new Error("Can't create a tmp dir for " + suffix, e);
}
System.out.println("DBG: Temp folder created: '" + path + "'");
}
private void delete() {
try {
FileUtils.deleteFileTreeWithRetry(path);
System.out.println("DBG: Temp folder deleted: '" + path + "'");
} catch (IOException exc) {
throw new Error("Could not deep delete '" + path + "'", exc);
}