[TIMOB-23631] Android: Ti.API.log prints wrong module signs(%) on console output
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Low |
| Status | Closed |
| Resolution | Duplicate |
| Resolution Date | 2017-07-13T17:50:12.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | Android |
| Labels | n/a |
| Reporter | Rakhi Mitro |
| Assignee | Eric Merriman |
| Created | 2016-07-13T10:28:57.000+0000 |
| Updated | 2017-07-13T17:50:19.000+0000 |
Description
Ti.API.log prints wrong module signs on output.
*index.xml*
<Alloy>
<Window class="container">
<Label id="label" onClick="doClick">Hello, World</Label>
</Window>
</Alloy>
*index.js*
function doClick(e) {
alert($.label.text);
Ti.API.log('%');
}
$.index.open();
*Console logs:*
[INFO] : ALERT: (KrollRuntimeThread) [593,5590] Hello, World
[INFO] : %%
This is an Android-only issue, works like expected on iOS.