Skip to content

Commit e51dccc

Browse files
committed
Temporrily disabling validation & more verbose output
1 parent 05d56e6 commit e51dccc

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

netpyne_ui/netpyne_geppetto.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ def validate_netParams(self):
312312
for line in summary:
313313
message = message + f" {line}\n"
314314
message = message + "\n"
315-
raise NetpyneValidationError(message)
315+
logging.warning("CONTINUING DESPITE FAILURE....")
316316

317317

318318
def simulateNetPyNEModelInGeppetto(self, args):
@@ -480,6 +480,7 @@ def loadModel(self, args):
480480
:param args:
481481
:return:
482482
"""
483+
logging.info("=========== Load Model ===========")
483484
if not any([args[option] for option in ['loadNetParams', 'loadSimCfg', 'loadSimData', 'loadNet']]):
484485
return utils.getJSONError("Error while loading data", 'You have to select at least one option')
485486

@@ -653,6 +654,8 @@ def importModel(self, modelParameters):
653654
os.chdir(owd)
654655

655656
def importNeuroML(self, modelParameters):
657+
658+
logging.info("=========== Importing NeuroML ===========")
656659
from netpyne_ui.helpers import neuroml
657660

658661

0 commit comments

Comments
 (0)