Singleton is actually considered an anti-pattern by some....
You could rename the class to cFireASP, make the log method the default function and create one global FALog instance in youre include file. This gives you the same API with the advantage that you can pass references to the the FALog instance arround.
To decouple youre app further you could place the instanciation of this instance into a service locator. This way youre other classes don't have to reference various global instance directly, giving you another seam to seperate interface from implementation.
Tip: you reference the response object in your class which will make unittesting hard. Use depency injection or said servicelocator to separate the class from its global environment.
class cSomePageController
public env
private response, session, application, server, db_conn
private sub class_initialize
set response = env.response
set session = env.session
set application = env.application
set server = env.server
set db_conn = env.db_conn
end sub
public sub handle_request(request)
...
end sub
end class
...
set controller = new cSomePageController
set env = new ASPenv
set controller.env = env
call controller.handle_request(env.request)
' Alternatieve configuration for testing using a mock objects
set mock_env = new MockEnv
set controller.env = mock_env
call controller.handle_request(mock_env.request)
....