Vampurica / DZMS-DayZMissionSystem

A logic and useability rewrite of the DayZChernarus Mission System
17 stars 22 forks source link

add text to diag logs so they don't leave quotes in the log #25

Closed mudzereli closed 10 years ago

mudzereli commented 10 years ago

minor change -- not necessary to accept if you don't want to

Vampurica commented 10 years ago

Do you have an example of the RPT after this change? I'll probably merge it, just wondering what it looks like.

mudzereli commented 10 years ago

yeah -- it's really nothing major but it converts the plain text in the diag_log to structured text, just removes the quotes around the text in the log. Doesn't affect anything other than cosmetics: without:

22:11:39 "[DZMS]: Running Major Mission SM3."
22:11:45 "[DZMS]: (DZMSUnitsMajor) 3 AI Spawned, 3 units in mission."
22:11:47 "[DZMS]: Running Minor Mission SM1."
22:11:51 "[DZMS]: (DZMSUnitsMinor) 2 AI Spawned, 2 units in mission."

with:

22:11:39 [DZMS]: Running Major Mission SM3.
22:11:45 [DZMS]: (DZMSUnitsMajor) 3 AI Spawned, 3 units in mission.
22:11:47 [DZMS]: Running Minor Mission SM1.
22:11:51 [DZMS]: (DZMSUnitsMinor) 2 AI Spawned, 2 units in mission.