Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hintProcessing dots are annoying #16707

Closed
ringabout opened this issue Jan 13, 2021 · 1 comment
Closed

hintProcessing dots are annoying #16707

ringabout opened this issue Jan 13, 2021 · 1 comment

Comments

@ringabout
Copy link
Member

ringabout commented Jan 13, 2021

static: echo "1234"
import std/sets
static: echo "3456"

prints

....
1234
......
3456

see https://play.nim-lang.org/#ix=2LU4

workaround:

import std/sets
static: echo "1234"
static: echo "3456"
@timotheecour timotheecour changed the title dots are annoying hintProcessing dots are annoying Jan 13, 2021
@timotheecour
Copy link
Member

timotheecour commented Jan 13, 2021

  • you can disable them with --hint:processing:off
  • you had the exact same issue with the old form without dots, see XDG_CONFIG_HOME= $nim_120_X c -r -f t11696 which shows
Hint: t11696 [Processing]
1234
Hint: sets [Processing]

except that you just "need to know" that dots must be disablabled via --hint:processing:off which admittedly is not obvious

proposal

  • introduce a flag --processing:dots|path to control whether to use dots or (as before) path
  • make --processing:path honor listFullPaths
  • in future, erasable log lines (Erasable log lines #14438) could be controlled via --processing:erasable

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants