apex get log

Fetch the specified log or given number of most recent logs from the org.

Description for apex get log 

To get the IDs for your debug logs, run “sf apex log list”. Executing this command without flags returns the most recent log.

Aliases for apex get log 

force:apex:log:get

Flags 

Flag Name (Long)Flag Name (Short)Description
‑‑api‑versionN/AType: Value

Override the api version used for api requests made by this command
‑‑flags‑dirN/AType: Value

Import flag values from a directory.
‑‑jsonN/AType: Boolean

Format output as json.
‑‑log‑id‑iType: Value

ID of the specific log to display.
‑‑number‑nType: Value

Number of the most recent logs to display.
‑‑output‑dir‑dType: Value

Directory for saving the log files.

The location can be an absolute path or relative to the current working directory. The default is the current directory.
‑‑target‑org‑oType: Value
Required

Username or alias of the target org. Not required if the target-org configuration variable is already set.

Examples for apex get log 

Fetch the log in your default org using an ID:

1sf apex get log --log-id <log id>

Fetch the log in the org with the specified username using an ID:

1sf apex get log --log-id <log id> --target-org me@my.org

Fetch the two most recent logs in your default org:

1sf apex get log --number 2

Similar to previous example, but save the two log files in the specified directory:

1sf apex get log --output-dir /Users/sfdxUser/logs --number 2