1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

UiPathの実行ログをグリッドビューで確認する

Last updated at Posted at 2020-07-19

Orchestratorに出力されたログではなく、ローカルに出力されたログファイルを確認する方法

コード

# ログファイルのパスを取得する
# 現在日のログファイルのパスを取得する例
$LogFilePath = $env:LOCALAPPDATA + ("\UiPath\Logs\{0:yyyy-MM-dd}_Execution.log" -f Get-Date)

# PowerShellコンソール上で以下のコードをコピペする
# 表示したい項目(列、カラム)があれば select の引数を追加すること
cat $LogFilePath |
    %{ $_.Split(" ", 3)[2] } | ConvertFrom-Json |
    select @{n="timeStamp";e={([DateTime]$_.timeStamp).ToString("yyyy/MM/dd HH:mm:ss.fffffff")}},
        level,message |
    ogv -Title UiPath実行ログ

実行結果

image.png

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?