This commit is contained in:
Joscha 2025-03-04 03:23:02 +01:00
parent d09063b3f3
commit 4fba556c35
2 changed files with 5 additions and 2 deletions

View file

@ -38,3 +38,8 @@ Implemented:
- Chat messages (euph, twitch)
- Instant camera
- Procedural easter egg generator
## Todos
- [ ] Sensible limits on all string inputs
- [ ] Better debug logging

View file

@ -215,7 +215,6 @@ impl World for Typst {
}
fn source(&self, id: FileId) -> FileResult<Source> {
// TODO Remove debug logging
println!("Accessing source {id:?}");
let bytes = if let Some(spec) = id.package() {
@ -230,7 +229,6 @@ impl World for Typst {
}
fn file(&self, id: FileId) -> FileResult<Bytes> {
// TODO Remove debug logging
println!("Accessing file {id:?}");
let bytes = if let Some(spec) = id.package() {