From bd58ee2f798ec59029ee119c8fee839658a4ccdd Mon Sep 17 00:00:00 2001 From: navarro Date: Tue, 12 Jun 2012 15:43:42 +0200 Subject: [PATCH] Remove some debug from execution --- examples/msg/io/io.tesh | 4 ---- src/surf/storage.c | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/examples/msg/io/io.tesh b/examples/msg/io/io.tesh index 2e1816c447..b2a9bd1c1b 100644 --- a/examples/msg/io/io.tesh +++ b/examples/msg/io/io.tesh @@ -2,10 +2,6 @@ $ ${bindir:=.}/io/file ${srcdir:=.}/examples/platforms/storage.xml "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n" > [ 0.000000] (0:@) Configuration change: Set 'path' to '../examples/platforms/' -> [ 0.000000] (0:@) Create resource with Bconnection '150000000' Bread '100000000' Bwrite '30000000' -> [ 0.000000] (0:@) Create resource with Bconnection '150000000' Bread '100000000' Bwrite '30000000' -> [ 0.000000] (0:@) Create resource with Bconnection '150000000' Bread '100000000' Bwrite '30000000' -> [ 0.000000] (0:@) Create resource with Bconnection '150000000' Bread '100000000' Bwrite '30000000' > [ 0.000000] (0:@) Number of host '4' > [ 0.000000] (1:0@denise) Open file '/home/user/Install/simgrid/doc/simgrid/examples/platforms/g5k.xml' > [ 0.000000] (2:1@alice) Open file '/home/user/Install/simgrid/doc/simgrid/examples/platforms/One_cluster_no_backbone.xml' diff --git a/src/surf/storage.c b/src/surf/storage.c index 41011470f8..5bde923011 100644 --- a/src/surf/storage.c +++ b/src/surf/storage.c @@ -155,10 +155,10 @@ static void* storage_create_resource(const char* id, const char* model,const cha storage->state_current = SURF_RESOURCE_ON; storage_type_t storage_type = xbt_lib_get_or_null(storage_type_lib, type_id,ROUTING_STORAGE_TYPE_LEVEL); - XBT_INFO("Create resource with Bconnection '%zu' Bread '%zu' Bwrite '%zu'",Bconnection,Bread,Bwrite); double Bread = atof(xbt_dict_get(storage_type->properties,"Bread")); double Bwrite = atof(xbt_dict_get(storage_type->properties,"Bwrite")); double Bconnection = atof(xbt_dict_get(storage_type->properties,"Bconnection")); + XBT_DEBUG("Create resource with Bconnection '%f' Bread '%f' Bwrite '%f' and Size '%ld'",Bconnection,Bread,Bwrite,storage_type->size); storage->constraint = lmm_constraint_new(storage_maxmin_system, storage, Bconnection); storage->constraint_read = lmm_constraint_new(storage_maxmin_system, storage, Bread); storage->constraint_write = lmm_constraint_new(storage_maxmin_system, storage, Bwrite); -- 2.20.1