Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

to 1.2.4: Add trace logging and consistent logging #932

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/aid.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing

from keri.app.cli.common import existing
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/challenge/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import argparse
import json

from hio import help
from keri import help
from hio.base import doing
from mnemonic import mnemonic

Expand Down
2 changes: 2 additions & 0 deletions src/keri/app/cli/commands/challenge/respond.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

from hio.base import doing

from keri import help
from keri.app import habbing, forwarding, connecting
from keri.app.cli.common import existing
from keri.app.habbing import GroupHab
Expand All @@ -26,6 +27,7 @@
parser.add_argument('--recipient', '-r', help='Contact alias of the AID to send the signed words to',
action="store", required=True)

logger = help.ogler.getLogger()

def respond(args):
"""
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/challenge/verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import datetime
import sys

from hio import help
from keri import help
from hio.base import doing

from keri.app import indirecting, challenging, connecting, signaling
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/clean.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing

from keri.app.cli.common import existing
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/contacts/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import argparse
import json

from hio import help
from keri import help
from hio.base import doing
from keri import kering

Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/did/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from urllib.parse import urlparse

import sys
from hio import help
from keri import help
from hio.base import doing

from keri import kering
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/ends/add.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing

from keri import kering
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/ends/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing

from keri import kering
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/ends/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import argparse
import json

from hio import help
from keri import help
from hio.base import doing

from keri import kering
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/escrow.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import argparse
import json

from hio import help
from keri import help
from hio.base import doing

from keri.core import eventing
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import argparse
import json

from hio import help
from keri import help
from hio.base import doing

from keri.app.cli.common import existing
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import argparse
import sys

from hio import help
from keri import help
from hio.base import doing

from keri.app.cli.common import existing
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/incept.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import argparse
from dataclasses import dataclass

from hio import help
from keri import help
from hio.base import doing

from keri.app import habbing, agenting, indirecting, configing, delegating, forwarding
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import os
import sys

from hio import help
from keri import help
from hio.base import doing

import keri.app.oobiing
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/ipex/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import json
import sys

from hio import help
from keri import help
from hio.base import doing

from keri import kering
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/kevers.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import datetime

import sys
from hio import help
from keri import help
from hio.base import doing

from keri.app import indirecting
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing

from keri.app.cli.common import existing
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/local/watch.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys
import time

from hio import help
from keri import help
from hio.base import doing
from keri.app import agenting, indirecting, habbing, forwarding
from keri.app.cli.common import existing, terming
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/location/add.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import argparse
from urllib.parse import urlparse

from hio import help
from keri import help
from hio.base import doing

from keri import kering
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/mailbox/add.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing
from hio.help import Hict

Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/mailbox/debug.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing

from keri import kering
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/mailbox/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing

from keri.app import connecting
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/mailbox/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing

from keri.app.cli.common import existing
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/migrate/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing
from prettytable import PrettyTable

Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/migrate/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import argparse

import keri
from hio import help
from keri import help
from hio.base import doing
from keri import kering

Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/migrate/show.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing

from keri.app.cli.common import existing
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/multisig/continue.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing

from keri.app import indirecting, grouping, agenting
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/multisig/interact.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import argparse
from ordered_set import OrderedSet as oset

from hio import help
from keri import help
from hio.base import doing

from keri import kering
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/multisig/notice.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import argparse
from ordered_set import OrderedSet as oset

from hio import help
from keri import help
from hio.base import doing

from keri.app import habbing, forwarding, grouping
Expand Down
4 changes: 2 additions & 2 deletions src/keri/app/cli/commands/multisig/rotate.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import argparse
from ordered_set import OrderedSet as oset

from hio import help
from keri import help
from hio.base import doing

from keri import kering
Expand Down Expand Up @@ -44,7 +44,7 @@ def rotateGroupIdentifier(args):
Performs a rotation on the group identifier specified as an argument. The identifier prefix of the environment
represented by the name parameter must be a member of the group identifier. This command will perform a rotation
of the local identifier if the sequence number of the local identifier is the same as the group identifier sequence
number. It will wait for all other members of the group to acheive the same sequence number (group + 1) and then
number. It will wait for all other members of the group to achieve the same sequence number (group + 1) and then
publish the signed rotation event for the group identifier to all witnesses and wait for receipts.

Parameters:
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/multisig/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import argparse
import time

from hio import help
from keri import help
from hio.base import doing

from keri import kering
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/oobi/clean.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing

from keri.app.cli.common import existing
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/oobi/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import argparse

import sys
from hio import help
from keri import help
from hio.base import doing

from keri import kering
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/oobi/resolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing

import keri.app.oobiing
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/passcode/remove.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing

from keri.app.cli.common import existing
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/passcode/set.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import argparse
import getpass

from hio import help
from keri import help

from hio.base import doing

Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import datetime
import json

from hio import help
from keri import help
from hio.base import doing
from hio.help import decking

Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/rename.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing

from keri.app.cli.common import existing
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/rollback.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""
import argparse

from hio import help
from keri import help
from hio.base import doing

from keri import kering
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/saidify.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import argparse
import json

from hio import help
from keri import help
from hio.base import doing

from keri.core import coring
Expand Down
2 changes: 1 addition & 1 deletion src/keri/app/cli/commands/ssh/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from cryptography.hazmat.primitives import serialization
from cryptography.hazmat.primitives.asymmetric import ed25519
from hio import help
from keri import help
from hio.base import doing

from keri.app.cli.common import existing
Expand Down
Loading