@@ -366,7 +366,6 @@ public EntityManagerFactory call() {
366
366
// application-managed EntityManager proxy that automatically joins
367
367
// existing transactions.
368
368
this .entityManagerFactory = createEntityManagerFactoryProxy (this .nativeEntityManagerFactory );
369
- System .out .println ("Returning: " + System .currentTimeMillis ());
370
369
}
371
370
372
371
private EntityManagerFactory buildNativeEntityManagerFactory () {
@@ -381,7 +380,6 @@ private EntityManagerFactory buildNativeEntityManagerFactory() {
381
380
if (logger .isInfoEnabled ()) {
382
381
logger .info ("Initialized JPA EntityManagerFactory for persistence unit '" + getPersistenceUnitName () + "'" );
383
382
}
384
- System .out .println ("Done: " + System .currentTimeMillis ());
385
383
return emf ;
386
384
}
387
385
@@ -481,15 +479,16 @@ public EntityManagerFactory getNativeEntityManagerFactory() {
481
479
return this .nativeEntityManagerFactory ;
482
480
}
483
481
else {
484
- System .out .println ("Requested: " + System .currentTimeMillis ());
485
482
try {
486
483
return this .nativeEntityManagerFactoryFuture .get ();
487
484
}
488
485
catch (InterruptedException ex ) {
489
- throw new IllegalStateException ("Interrupted during initialization of native EntityManagerFactory" , ex );
486
+ throw new IllegalStateException ("Interrupted during initialization of native EntityManagerFactory: " +
487
+ ex .getMessage ());
490
488
}
491
489
catch (ExecutionException ex ) {
492
- throw new IllegalStateException ("Failed to asynchronously initialize native EntityManagerFactory" , ex );
490
+ throw new IllegalStateException ("Failed to asynchronously initialize native EntityManagerFactory: " +
491
+ ex .getMessage (), ex .getCause ());
493
492
}
494
493
}
495
494
}
0 commit comments