neptune-export/src/main/java/com/amazonaws/services/neptune/util/Timer.java [83:91]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static void printSuccess(String description, boolean padWithNewlines, long start) {
        if (padWithNewlines) {
            System.err.println();
        }
        System.err.println(String.format("Completed %s in %s seconds", description, (System.currentTimeMillis() - start) / 1000));
        if (padWithNewlines) {
            System.err.println();
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



neptune-export/src/main/java/com/amazonaws/services/neptune/util/Timer.java [93:101]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static void printFailure(String description, boolean padWithNewlines, long start) {
        if (padWithNewlines) {
            System.err.println();
        }
        System.err.println(String.format("An error occurred while %s. Elapsed time: %s seconds", description, (System.currentTimeMillis() - start) / 1000));
        if (padWithNewlines) {
            System.err.println();
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



