removed copyright year from console
Massimo Melina committed
Jan 21, 2024 at 10:57 UTC
9e4df33e163615297f6cdd22d5f4c42f62fd7076
1 file changed
+2
-2
src/const.ts
+2
-2
@@ -30,8 +30,8 @@ export const MIME_AUTO = 'auto'
30
// we want this to be the first stuff to be printed, then we print it in this module, that is executed at the beginning
31
if (DEV) console.clear()
32
else console.debug = ()=>{}
33
-console.log(`HFS ~ HTTP File Server - Copyright 2021-2023, Massimo Melina <a@rejetto.com>`)
34
-console.log(`License https://www.gnu.org/licenses/gpl-3.0.txt`)
33
+console.log(`HFS ~ HTTP File Server`)
34
+console.log(`© Massimo Melina <a@rejetto.com> - License https://www.gnu.org/licenses/gpl-3.0.txt`)
35
console.log('started', HFS_STARTED.toLocaleString(), DEV)
36
console.log('version', VERSION||'-')
37
console.log('build', BUILD_TIMESTAMP||'-')