Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
merge xbt/ex.hpp into simgrid/exception.hpp
[simgrid.git] / teshsuite / s4u / actor-autorestart / actor-autorestart.cpp
index b4718e2..00eee52 100644 (file)
@@ -4,7 +4,6 @@
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 #include "simgrid/s4u.hpp"
-#include <xbt/ex.hpp>
 
 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example");
 
@@ -13,10 +12,10 @@ static void dummy()
   XBT_INFO("I start");
   try {
     simgrid::s4u::this_actor::sleep_for(200);
+    XBT_INFO("I stop");
   } catch (xbt_ex& e) {
     if (e.category == host_error) {
-      XBT_INFO("The host has died ... as expected.");
-      XBT_INFO("I stop");
+      XBT_DEBUG("The host has died ... as expected. This actor silently stops");
     } else {
       XBT_ERROR("An unexpected exception has been raised.");
       throw;