From 61641abdca82fdc56a1efd90dd1d691d88350278 Mon Sep 17 00:00:00 2001 From: Joshua Fuhs Date: Fri, 22 Jun 2012 19:55:33 -0400 Subject: [PATCH] Added bare logging --- src/Log.ahk | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Log.ahk b/src/Log.ahk index 9daef4e..0785807 100755 --- a/src/Log.ahk +++ b/src/Log.ahk @@ -22,4 +22,7 @@ Log_msg( message ) { FormatTime, CurrentTime, , yyyyMMddHHmmss FileAppend, %CurrentTime% %message%`r`n, bugn_log.txt } - \ No newline at end of file + +Log_bare( message ) { + FileAppend, %message%`r`n, bugn_log.txt +} \ No newline at end of file