Skip to content

Commit c2bf618

Browse files
authored
Merge pull request #28 from ianpaul/14-lastfm-API-key-publish
changed logging.info to logging.debug
2 parents fc12aaa + 85438a3 commit c2bf618

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/flashbake/plugins/lastfm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def addcontext(self, message_file, config):
4040

4141
# last n items for m creator
4242
url = "%suser.getrecentTracks&user=%s&api_key=%s&limit=%s&format=json" % (LASTFM, self.user_name, self.api_key, self.limit)
43-
logging.info('API call: %s' % url)
43+
logging.debug('API call: %s' % url)
4444
raw_data = self._fetch_data(url)
4545

4646
tracks = raw_data['recenttracks']['track']

0 commit comments

Comments
 (0)