# HG changeset patch # User Doug Simon # Date 1433978204 -7200 # Node ID e26913e5bc3cce197d03cf13d625a1a44ef29471 # Parent 3187b704b4d13731c5bc285cd8e17cb044d8f860 print absolute file names from CFGPrinterObserver diff -r 3187b704b4d1 -r e26913e5bc3c graal/com.oracle.graal.printer/src/com/oracle/graal/printer/CFGPrinterObserver.java --- a/graal/com.oracle.graal.printer/src/com/oracle/graal/printer/CFGPrinterObserver.java Thu Jun 11 01:16:06 2015 +0200 +++ b/graal/com.oracle.graal.printer/src/com/oracle/graal/printer/CFGPrinterObserver.java Thu Jun 11 01:16:44 2015 +0200 @@ -100,7 +100,7 @@ if (!method.equals(curMethod) || !curDecorators.equals(decorators)) { cfgPrinter.printCompilation(method); - TTY.println("CFGPrinter: Dumping method %s to %s", method, cfgFile); + TTY.println("CFGPrinter: Dumping method %s to %s", method, cfgFile.getAbsolutePath()); } curMethod = method; curDecorators = decorators; @@ -131,7 +131,7 @@ } catch (FileNotFoundException e) { throw new JVMCIError("Could not open " + cfgFile.getAbsolutePath()); } - TTY.println("CFGPrinter: Output to file %s", cfgFile); + TTY.println("CFGPrinter: Output to file %s", cfgFile.getAbsolutePath()); } if (!checkMethodScope()) {