In logging output, I often want indentation. In Python, the
output is built like:
```
print(" " * ddepth, "data at this level: ", datum)
```
Which is to say, build a string by concatenating " " ddepth
times. Is there a comparable idiom in dlang or Phobos?
Thanks!
Andy