Skip to content

Commit

Permalink
Merge branch 'capabilities-module' of https://github.com/yelhamer/capa
Browse files Browse the repository at this point in the history
…into capabilities-module
  • Loading branch information
yelhamer committed Oct 20, 2023
2 parents 3572b51 + 20604c4 commit 8029fed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion capa/capabilities/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from capa.features.address import NO_ADDRESS
from capa.features.extractors.base_extractor import FeatureExtractor, StaticFeatureExtractor, DynamicFeatureExtractor

logger = logging.getLogger("capa")
logger = logging.getLogger(__name__)


def find_file_capabilities(ruleset: RuleSet, extractor: FeatureExtractor, function_features: FeatureSet):
Expand Down
2 changes: 1 addition & 1 deletion capa/capabilities/dynamic.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from capa.capabilities.common import find_file_capabilities
from capa.features.extractors.base_extractor import CallHandle, ThreadHandle, ProcessHandle, DynamicFeatureExtractor

logger = logging.getLogger("capa")
logger = logging.getLogger(__name__)


def find_call_capabilities(
Expand Down
2 changes: 1 addition & 1 deletion capa/capabilities/static.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from capa.capabilities.common import find_file_capabilities
from capa.features.extractors.base_extractor import BBHandle, InsnHandle, FunctionHandle, StaticFeatureExtractor

logger = logging.getLogger("capa")
logger = logging.getLogger(__name__)


def find_instruction_capabilities(
Expand Down

0 comments on commit 8029fed

Please sign in to comment.