Closed tmkw closed 2 months ago
this is human readable output:
$ sf apex run --target-org dev
› Warning: @salesforce/cli update available from 2.56.7 to 2.58.7.
Start typing Apex code. Press the Enter key after each line, then press CTRL+D when finished.
> Account account = [Select Id, Name from Account limit 1];
System.debug(account.Name);
Compiled successfully.
Executed successfully.
61.0 APEX_CODE,DEBUG;APEX_PROFILING,INFO
Execute Anonymous: Account account = [Select Id, Name from Account limit 1];
Execute Anonymous: System.debug(account.Name);
00:10:51.27 (27304955)|USER_INFO|[EXTERNAL]|0055j00000AUSsW|tmaekawa@example.sandbox|(GMT+09:00) 日本標準時 (Asia/Tokyo)|GMT+09:00
00:10:51.27 (27351542)|EXECUTION_STARTED
00:10:51.27 (27389512)|CODE_UNIT_STARTED|[EXTERNAL]|execute_anonymous_apex
00:10:51.27 (42192908)|USER_DEBUG|[2]|DEBUG|はげてないよ
00:10:51.42 (42354644)|CUMULATIVE_LIMIT_USAGE
00:10:51.42 (42354644)|LIMIT_USAGE_FOR_NS|(default)|
Number of SOQL queries: 1 out of 100
Number of query rows: 1 out of 50000
Number of SOSL queries: 0 out of 20
Number of DML statements: 0 out of 150
Number of Publish Immediate DML: 0 out of 150
Number of DML rows: 0 out of 10000
Maximum CPU time: 0 out of 10000
Maximum heap size: 0 out of 6000000
Number of callouts: 0 out of 100
Number of Email Invocations: 0 out of 10
Number of future calls: 0 out of 50
Number of queueable jobs added to the queue: 0 out of 50
Number of Mobile Apex push calls: 0 out of 10
00:10:51.42 (42354644)|CUMULATIVE_LIMIT_USAGE_END
00:10:51.27 (42842720)|CODE_UNIT_FINISHED|execute_anonymous_apex
00:10:51.27 (42869792)|EXECUTION_FINISHED
I need to know how to change child process's input and output. OR, Just using temp file can be fine.