Remove debug logs

This commit is contained in:
Kieran 2023-06-25 23:37:47 +01:00
parent 2afda47b0c
commit 9fd8b65bdf
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

View File

@ -69,12 +69,10 @@ export function NewStream({
}
function toDateTimeString(n: number) {
console.debug(n);
return new Date(n * 1000).toISOString().substring(0, -1)
}
function fromDateTimeString(s: string) {
console.debug(s);
return Math.floor(new Date(s).getTime() / 1000)
}