Merge pull request #6714 from acemod/markers-server-log-warning

change an ERROR to WARNING in Markers component
This commit is contained in:
commy2 2018-12-02 13:44:00 +01:00 committed by GitHub
commit b055a0f633
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ GVAR(currentMarkerConfigName) = "";
private _index = (GETGVAR(allMapMarkers,[])) find _marker; // case-sensitive, but should be fine
if (_index < 0) exitWith {
ERROR_1("Could not find data for %1", _marker);
WARNING_1("Could not find data for %1", _marker);
};
private _data = GVAR(allMapMarkersProperties) select _index;