B B4JExplorer Active Member Licensed User Longtime User Mar 4, 2017 #1 Hi, Is it possible to generate log strings, from within Inline Java code, that will show up, in the B4J output screen? The same place where ordinary B4J Log( str ) strings display? Thanks and regards,
Hi, Is it possible to generate log strings, from within Inline Java code, that will show up, in the B4J output screen? The same place where ordinary B4J Log( str ) strings display? Thanks and regards,
Daestrum Expert Licensed User Longtime User Mar 4, 2017 #2 Do you mean using B4X: System.out.println("some text to show"); Upvote 0
B B4JExplorer Active Member Licensed User Longtime User Mar 4, 2017 #3 Daestrum said: Do you mean using B4X: System.out.println("some text to show"); Click to expand... Yes, I mean that. Thanks, Daestrum. I didn't realize B4J's Log was being directed to standard output. Upvote 0
Daestrum said: Do you mean using B4X: System.out.println("some text to show"); Click to expand... Yes, I mean that. Thanks, Daestrum. I didn't realize B4J's Log was being directed to standard output.
R Roycefer Well-Known Member Licensed User Longtime User Mar 4, 2017 #4 You can also use B4J's logging system with B4X: BA.Log("blah"); This code will be portable to B4A, rapid debugger, etc... Upvote 0
You can also use B4J's logging system with B4X: BA.Log("blah"); This code will be portable to B4A, rapid debugger, etc...
B B4JExplorer Active Member Licensed User Longtime User Mar 5, 2017 #5 Roycefer said: You can also use B4J's logging system with B4X: BA.Log("blah"); This code will be portable to B4A, rapid debugger, etc... Click to expand... Ah, cool. You don't even need a special import for this. Thanks Roycefer/Erel/B4J developers. Upvote 0
Roycefer said: You can also use B4J's logging system with B4X: BA.Log("blah"); This code will be portable to B4A, rapid debugger, etc... Click to expand... Ah, cool. You don't even need a special import for this. Thanks Roycefer/Erel/B4J developers.