Changeset 375 for cpp/frams/neuro
- Timestamp:
- 04/26/15 00:59:09 (10 years ago)
- Location:
- cpp/frams/neuro
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/neuro/neurofactory.cpp
r372 r375 98 98 } 99 99 if (removed.len()) 100 Hprintf("NeuroFactory","removeUninmplemented",HMLV_INFO,100 logPrintf("NeuroFactory","removeUninmplemented",LOG_INFO, 101 101 "Removed Neuro classes: %s",removed.c_str()); 102 102 } -
cpp/frams/neuro/neuroimpl.cpp
r372 r375 72 72 n->userdata[mytags_id]=ni; 73 73 if (!ni) { errorcount++; 74 Hprintf("NeuroNetImpl","create",HMLV_WARN,"neuron #%d (%s) implementation not available",74 logPrintf("NeuroNetImpl","create",LOG_WARN,"neuron #%d (%s) implementation not available", 75 75 i,n->getClassName().c_str()); 76 76 continue; } // implementation not available?! … … 87 87 if (!ni->lateinit()) 88 88 { ni->status=NeuroImpl::InitError; errorcount++; 89 Hprintf("NeuroNetImpl","create",HMLV_WARN,"neuron #%d (%s) initialization failed",89 logPrintf("NeuroNetImpl","create",LOG_WARN,"neuron #%d (%s) initialization failed", 90 90 i,n->getClassName().c_str()); 91 91 continue; } -
cpp/frams/neuro/neuroimpl.h
r372 r375 8 8 #include <frams/model/model.h> 9 9 #include <frams/param/param.h> 10 #include <common/ hmessage.h>10 #include <common/log.h> 11 11 #ifdef NEURO_SIGNALS 12 12 #include <frams/simul/signals.h>
Note: See TracChangeset
for help on using the changeset viewer.