Skip to content

Instantly share code, notes, and snippets.

View hakanak's full-sized avatar
🏠
Working from home

Hakan AK hakanak

🏠
Working from home
View GitHub Profile
@CarlRevell
CarlRevell / class_logger.asp
Last active November 4, 2022 07:56
Simple classic ASP log to file class.
<%
'// Usage:
'//
'// dim l : set l = new logger
'// l.log("Hello")("World")
'// l.includeTimetamp = false
'// l("Lorem ipsum")
'// l.setLogFile("c:\temp\log_2.log").log("This is a new log!")
'// set l = nothing