Skip to content

Commit

Permalink
use {index}@{ms} syntax for logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakads committed Nov 11, 2019
1 parent a90ffda commit 02596fb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/catch.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def random(q, fn, path, content):
'isSlider': len(content_split) > 7
})
k += 1
q.put(f'append to notes ({k})')
q.put(f'append to notes ({k}@{note_ms})')

q.put(f'notes import success')

Expand Down
2 changes: 1 addition & 1 deletion src/mania.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def random(q, fn, path, content):
'extra': content_split[1:]
})
k += 1
q.put(f'append to notes ({k}@{content_split[0]})')
q.put(f'append to notes ({k}@{note_ms})')

q.put(f'notes import success')

Expand Down
2 changes: 1 addition & 1 deletion src/std.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def random(q, fn, path, content):
'isSlider': len(content_split) > 7
})
k += 1
q.put(f'append to notes ({k}@{content_split[0]})')
q.put(f'append to notes ({k}@{note_ms})')

q.put(f'notes import success')

Expand Down
2 changes: 1 addition & 1 deletion src/taiko.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def random(q, fn, path, content):
'extra2': note_extra2
})
k += 1
q.put(f'append to notes ({k})')
q.put(f'append to notes ({k}@{content_split[2]})')

q.put(f'notes import success')

Expand Down

0 comments on commit 02596fb

Please sign in to comment.