Skip to content
Snippets Groups Projects
Commit 7f982adf authored by Nico Vermaas's avatar Nico Vermaas
Browse files

temporary debug = true for troubleshooting

parent 5a6797a6
No related branches found
No related tags found
No related merge requests found
Pipeline #56053 passed
......@@ -8,6 +8,9 @@ try:
except:
DEBUG = False
#nv: 21 aug 2023, temporary override for troubleshooting
DEBUG = True
ALLOWED_HOSTS = ["*"]
# True: Enables a header that tells the UA to switch on the XSS filter.
......
......@@ -423,8 +423,8 @@ class LogEntry(models.Model):
previous_timestamp = self.task.creationTime
dt = (self.timestamp - previous_timestamp).seconds
message = "logentry for task "+str(self.task.id)+", to "+self.status + " took " + str(dt) + " seconds"
logger.info(message)
#message = "logentry for task "+str(self.task.id)+", to "+self.status + " took " + str(dt) + " seconds"
#logger.info(message)
self.wall_clock_time = dt
except Exception as e:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment