Compare commits
2 commits
d3ac54faea
...
b42bced1cf
Author | SHA1 | Date | |
---|---|---|---|
b42bced1cf | |||
631ca24ba6 |
3 changed files with 4 additions and 4 deletions
|
@ -52,7 +52,7 @@ class SceneGraphSolver(BaseSolver):
|
|||
if current == scene:
|
||||
return
|
||||
if current not in DG.nodes:
|
||||
logger.debug(f"{SceneComment[current]}不在场景图中")
|
||||
logger.error(f"{SceneComment[current]}不在场景图中")
|
||||
self.sleep(10)
|
||||
return
|
||||
try:
|
||||
|
@ -71,7 +71,7 @@ class SceneGraphSolver(BaseSolver):
|
|||
except MowerExit:
|
||||
raise
|
||||
except Exception as e:
|
||||
logger.exception(f"场景转移异常:{e}")
|
||||
logger.debug_exception(f"场景转移异常:{e}")
|
||||
self.sleep()
|
||||
|
||||
def back_to_index(self):
|
||||
|
|
2
ui/dist/assets/main.js
vendored
2
ui/dist/assets/main.js
vendored
File diff suppressed because one or more lines are too long
|
@ -17,7 +17,7 @@ export const useMowerStore = defineStore('mower', () => {
|
|||
const result = []
|
||||
for (const i of log_lines.value) {
|
||||
if (i.match(num_reg)) {
|
||||
result.push(i.substring(15))
|
||||
result.push(i.substring(6))
|
||||
} else {
|
||||
result.push(i)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue