From d749f5c7048199ee4ac089aaa3a2b6747264598f Mon Sep 17 00:00:00 2001 From: Mikkel Hjortshoej Date: Thu, 2 Jul 2020 16:13:49 +0200 Subject: [PATCH] Fix typo --- core/log/file_console_logger.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/log/file_console_logger.odin b/core/log/file_console_logger.odin index 56e3e6c80..ccecbc8b8 100644 --- a/core/log/file_console_logger.odin +++ b/core/log/file_console_logger.odin @@ -135,7 +135,7 @@ do_location_header :: proc(opts: Options, buf: ^strings.Builder, location := #ca } if .Procedure in opts { - if (Location_File_Opts | {.Procedure}) & opts != nil { + if (Location_File_Opts | {.Line}) & opts != nil { fmt.sbprint(buf, ":"); } fmt.sbprintf(buf, "%s()", location.procedure);