mirror of
https://github.com/deltachat/deltachat-core.git
synced 2025-10-06 12:00:11 +02:00
command line: show the padlock beside the message id (easier to see and find)
This commit is contained in:
parent
985de24edc
commit
7f470d2a5a
1 changed files with 2 additions and 2 deletions
|
@ -212,12 +212,12 @@ static void log_msglist(mrmailbox_t* mailbox, mrarray_t* msglist)
|
|||
|
||||
char* temp2 = mr_timestamp_to_str(mrmsg_get_timestamp(msg));
|
||||
char* msgtext = mrmsg_get_text(msg);
|
||||
mrmailbox_log_info(mailbox, 0, "Msg#%i: %s (Contact#%i): %s %s%s%s%s%s [%s]",
|
||||
mrmailbox_log_info(mailbox, 0, "Msg#%i%s: %s (Contact#%i): %s %s%s%s%s [%s]",
|
||||
(int)mrmsg_get_id(msg),
|
||||
mrmsg_get_showpadlock(msg)? "\xF0\x9F\x94\x92" : "",
|
||||
contact_name,
|
||||
contact_id,
|
||||
msgtext,
|
||||
mrmsg_get_showpadlock(msg)? "\xF0\x9F\x94\x92" : "",
|
||||
mrmsg_is_starred(msg)? " \xE2\x98\x85" : "",
|
||||
mrmsg_get_from_id(msg)==1? "" : (mrmsg_get_state(msg)==MR_STATE_IN_SEEN? "[SEEN]" : (mrmsg_get_state(msg)==MR_STATE_IN_NOTICED? "[NOTICED]":"[FRESH]")),
|
||||
mrmsg_is_systemcmd(msg)? "[SYSTEM]" : "",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue