WFL: Add colon to debug_print() output with two parameters
This commit is contained in:
parent
22ef217d38
commit
1b42378bdc
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ private:
|
|||
str1 = var1.string_cast();
|
||||
const variant var2 = args()[1]->evaluate(variables,fdb);
|
||||
str2 = var2.to_debug_string(true);
|
||||
LOG_SF << str1 << str2 << std::endl;
|
||||
LOG_SF << str1 << ": " << str2 << std::endl;
|
||||
if(game_config::debug) {
|
||||
game_display::get_singleton()->get_chat_manager().add_chat_message(time(nullptr), str1, 0, str2, events::chat_handler::MESSAGE_PUBLIC, false);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue