forked from expo/troggle
better error handling
This commit is contained in:
parent
a1e538e93a
commit
5007393536
@ -211,9 +211,14 @@ def scanupload(request, path=None):
|
|||||||
wallet = "2022#01" # improve this later
|
wallet = "2022#01" # improve this later
|
||||||
|
|
||||||
year = wallet[:4]
|
year = wallet[:4]
|
||||||
if int(year) <= 1998:
|
try:
|
||||||
#print(f'! - FORM scanupload - start {wallet} REDIRECT TO OLDWALLET')
|
if int(year) <= 1998:
|
||||||
|
#print(f'! - FORM scanupload - start {wallet} REDIRECT TO OLDWALLET')
|
||||||
|
return(oldwallet(request, path))
|
||||||
|
except:
|
||||||
|
# if nonumeric wallet name for example
|
||||||
return(oldwallet(request, path))
|
return(oldwallet(request, path))
|
||||||
|
|
||||||
|
|
||||||
if str(wallet).lower().endswith('indexpages'):
|
if str(wallet).lower().endswith('indexpages'):
|
||||||
# print(f'! - FORM scanupload - start {wallet} REDIRECT TO OLDWALLET')
|
# print(f'! - FORM scanupload - start {wallet} REDIRECT TO OLDWALLET')
|
||||||
|
@ -202,7 +202,7 @@ class LoadingSurvex():
|
|||||||
print(self.insp+message)
|
print(self.insp+message)
|
||||||
DataIssue.objects.create(parser='survex', message=message, url=get_offending_filename(survexblock.survexfile.path))
|
DataIssue.objects.create(parser='survex', message=message, url=get_offending_filename(survexblock.survexfile.path))
|
||||||
else:
|
else:
|
||||||
message = "! Bad svx command: [*{}] {} ({}) {}".format(cmd, line, survexblock, survexblock.survexfile.path)
|
message = "! Bad unrecognised svx command: [*{}] {} ({}) {}".format(cmd, line, survexblock, survexblock.survexfile.path)
|
||||||
print(self.insp+message)
|
print(self.insp+message)
|
||||||
DataIssue.objects.create(parser='survex', message=message, url=get_offending_filename(survexblock.survexfile.path))
|
DataIssue.objects.create(parser='survex', message=message, url=get_offending_filename(survexblock.survexfile.path))
|
||||||
|
|
||||||
@ -313,7 +313,7 @@ class LoadingSurvex():
|
|||||||
survexblock.date = datetime.strptime(line, '%Y') # sets to January 1st
|
survexblock.date = datetime.strptime(line, '%Y') # sets to January 1st
|
||||||
setdate(year)
|
setdate(year)
|
||||||
else:
|
else:
|
||||||
message = "! DATE unrecognised '{}' ({}) {}".format(line, survexblock, survexblock.survexfile.path)
|
message = "! Error DATE unrecognised '{}' ({}) {}".format(line, survexblock, survexblock.survexfile.path)
|
||||||
print(self.insp+message)
|
print(self.insp+message)
|
||||||
DataIssue.objects.create(parser='survex', message=message, url=get_offending_filename(survexblock.survexfile.path))
|
DataIssue.objects.create(parser='survex', message=message, url=get_offending_filename(survexblock.survexfile.path))
|
||||||
|
|
||||||
@ -424,7 +424,7 @@ class LoadingSurvex():
|
|||||||
except:
|
except:
|
||||||
message = ' ! Value Error: Compass not found in line %s in %s' % (ls, survexblock.survexfile.path)
|
message = ' ! Value Error: Compass not found in line %s in %s' % (ls, survexblock.survexfile.path)
|
||||||
print(self.insp+message)
|
print(self.insp+message)
|
||||||
DataIssue.objects.create(parser='survexleg', message=message)
|
DataIssue.objects.create(parser='survexleg', message=message, url=get_offending_filename(survexblock.survexfile.path))
|
||||||
lcompass = invalid_compass
|
lcompass = invalid_compass
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@ -626,7 +626,7 @@ class LoadingSurvex():
|
|||||||
# ls = ["normal", "from", "to", "tape", "compass", "clino" ]
|
# ls = ["normal", "from", "to", "tape", "compass", "clino" ]
|
||||||
for i in range(1, len(ls)): # len[0] is "normal"
|
for i in range(1, len(ls)): # len[0] is "normal"
|
||||||
if ls[i].lower() =="newline":
|
if ls[i].lower() =="newline":
|
||||||
message = f" ! - ABORT *data statement has NEWLINE in it in {survexblock.survexfile.path}. Not parsed by torggle. '{args}'"
|
message = f" ! - ABORT *data statement has NEWLINE in it in {survexblock.survexfile.path}. Not parsed by troggle. '{args}'"
|
||||||
print(message)
|
print(message)
|
||||||
print(message,file=sys.stderr)
|
print(message,file=sys.stderr)
|
||||||
DataIssue.objects.create(parser='survex', message=message, url=get_offending_filename(survexblock.survexfile.path))
|
DataIssue.objects.create(parser='survex', message=message, url=get_offending_filename(survexblock.survexfile.path))
|
||||||
@ -735,7 +735,7 @@ class LoadingSurvex():
|
|||||||
#print("\n"+message)
|
#print("\n"+message)
|
||||||
#print("\n"+message,file=sys.stderr)
|
#print("\n"+message,file=sys.stderr)
|
||||||
return
|
return
|
||||||
message = f" ! Error: FAILURE '{headpath}' while creating '{includelabel}' at depth:'{depth}'. Not a cave or in the ignore list:'{self.ignoreprefix}'"
|
message = f" ! Error: FAILURE '{headpath}' while creating '{includelabel}' at depth:[{depth}]. Not a cave or in the ignore list:'{self.ignoreprefix}'"
|
||||||
# getting this triggered for gpx/2018 (cavern error) but not for gpx/2017 (no content).
|
# getting this triggered for gpx/2018 (cavern error) but not for gpx/2017 (no content).
|
||||||
print("\n"+message)
|
print("\n"+message)
|
||||||
print("\n"+message,file=sys.stderr)
|
print("\n"+message,file=sys.stderr)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user