Looks good, but not that sexy. We make it a little more eye-catching by adding block shapes (shape=diamond), labels for arrows (label="Yes"), and colors "color, fontcolor".
digraph G {
comment="PL/SQL flowchart generated by ClearSQL";
node [fontname="Arial", fontsize=8, height=.2, width=.25, color="#000000", fontcolor="#000000"];
edge [fontname="Arial", fontsize=8, arrowsize=.8, color="#000000", fontcolor="#000000"];
N0 [shape=plaintext, label="", style=invis];
N1_COND [shape=diamond, conditional=true, label="P_MESSAGE_TYPE \>= LOG_LEVEL ?"];
N2 [shape=box, label="ADD_LOG_RECORD(P_MESSAGE_TYPE, P_MESSAGE);"];
EXIT_LABEL [shape=Msquare, label="END"];
N0 -> N1_COND [color=darkgoldenrod];
N1_COND -> N2 [label=" Yes " color="#228b22" fontcolor="#228b22"];
N1_COND -> EXIT_LABEL [label=" No " color="#ff7e40" fontcolor="#ff7e40"];
N2 -> EXIT_LABEL
subgraph "cluster_#1" {
bgcolor="#ffffff";
label="";
fontname="Arial"; fontsize=9;
fontcolor="#0000ff"; color="#0000ff"; labeljust="l";
N1_COND; N2
}
}