mirror of https://github.com/logos-co/wadoku.git
added loglvl and more logging
This commit is contained in:
parent
2d3d75a891
commit
d9e43c4a5a
|
@ -20,8 +20,13 @@ rlnCredentials.txt
|
|||
*.aar
|
||||
*.jar
|
||||
|
||||
# output/log dir and files
|
||||
pkg/*
|
||||
data/*
|
||||
filter.out
|
||||
lightpush.out
|
||||
filter.log
|
||||
lightpush.log
|
||||
|
||||
# output binaries
|
||||
waku-lightpush
|
||||
|
|
|
@ -15,8 +15,8 @@ def run(args):
|
|||
output_file = config['output_file']
|
||||
duration = config['duration']
|
||||
iat = config['iat']
|
||||
mount_src = config['mount_src']
|
||||
mount_dst = config['mount_target']
|
||||
loglvl = config['log_level']
|
||||
ctopic = config['content_topic']
|
||||
print(config)
|
||||
|
||||
waku_filtr = add_service(
|
||||
|
@ -26,6 +26,8 @@ def run(args):
|
|||
entrypoint= ["/go/bin/waku-filter"],
|
||||
cmd = [ "-o=" + "/go/bin/out/filter.out",
|
||||
"-d=" + duration,
|
||||
"-c=" + ctopic,
|
||||
"-l=" + loglvl,
|
||||
"-i=" + iat ],
|
||||
),
|
||||
)
|
||||
|
@ -36,6 +38,8 @@ def run(args):
|
|||
entrypoint= ["/go/bin/waku-lightpush"],
|
||||
cmd = [ "-o=" + "/go/bin/out/lightpush.out",
|
||||
"-d=" + duration,
|
||||
"-c=" + ctopic,
|
||||
"-l=" + loglvl,
|
||||
"-i=" + iat ],
|
||||
),
|
||||
)
|
||||
|
|
86
run-waku.sh
86
run-waku.sh
|
@ -5,21 +5,27 @@ usage(){
|
|||
exit 1
|
||||
}
|
||||
|
||||
# two tests per run
|
||||
filtr="filter"
|
||||
lpush="lightpush"
|
||||
|
||||
# file/dir locations
|
||||
prefix="waku"
|
||||
docker_op_dir="/go/bin/out"
|
||||
enclave="waku-enclave"
|
||||
host_output_dir="/home1/mimosa/runs"
|
||||
|
||||
content_topic="80fc1f6b30b63bdd0a65df833f1da3fa" #just to be unique, a md5
|
||||
duration="1000s" # run duration is 16.666 mins
|
||||
iat="300ms" # pub msg inter-arrival-time is 300ms
|
||||
# params for the run
|
||||
ctopic="8fc1f6b30b63bdd0a65df833f1da3fa" # default ctopic, a md5
|
||||
duration="100s" # duration of the run
|
||||
iat="300ms" # pub msg inter-arrival-time
|
||||
loglvl="info" # log level
|
||||
|
||||
sleep_time=5
|
||||
time=""
|
||||
|
||||
clean(){
|
||||
parent=$(pwd)
|
||||
parent=$(pwd) # no pushd / popd
|
||||
#rm -rf ./data
|
||||
cd waku/$filtr
|
||||
rm $prefix-$filtr
|
||||
|
@ -54,28 +60,33 @@ build_docker() {
|
|||
|
||||
|
||||
start() {
|
||||
echo "\t\t.........................."
|
||||
echo "\t\tBEGINNING THE $1 RUN..."
|
||||
echo "\t\t.........................."
|
||||
time="$(\date +"%Y-%m-%d-%Hh%Mm%Ss")"
|
||||
ctopic="$duration-$iat-$time"
|
||||
echo "\t\t.............................................."
|
||||
echo "\t\tBEGINNING THE $1 RUN @ $time"
|
||||
echo "\t\tparams: $ctopic"
|
||||
echo "\t\t.............................................."
|
||||
}
|
||||
|
||||
|
||||
end() {
|
||||
echo "\t\t $1 RUN DONE..."
|
||||
echo "\t\t $1 RUN DONE @ $(\date +"%Y-%m-%d-%Hh%Mm%Ss") "
|
||||
echo "\t\t params: $time, $duration, $iat-$ctopic"
|
||||
}
|
||||
|
||||
|
||||
metal_run() {
|
||||
parent=$(pwd)
|
||||
time="$(\date +"%Y-%m-%d-%Hh%Mm%Ss")"
|
||||
FTDIR="$(pwd)/data/metal/$time"
|
||||
LPDIR="$(pwd)/data/metal/$time"
|
||||
#time="$(\date +"%Y-%m-%d-%Hh%Mm%Ss")"
|
||||
FTDIR="$host_output_dir/data/metal/$ctopic"
|
||||
LPDIR="$host_output_dir/data/metal/$ctopic"
|
||||
|
||||
killall -9 $prefix-$filtr $prefix-$lpush
|
||||
cd waku/$filtr
|
||||
[ -d $FTDIR ] || mkdir -p $FTDIR
|
||||
ofname="$FTDIR/$filtr.out"
|
||||
echo -n "starting $filtr... $pwd "
|
||||
./$prefix-$filtr -o $ofname -d $duration -i $iat > $FTDIR/$filtr.log &
|
||||
./$prefix-$filtr -o $ofname -d $duration -i $iat -l $loglvl -c $ctopic > $FTDIR/$filtr.log &
|
||||
echo " done"
|
||||
cd ..
|
||||
cd lightpush
|
||||
|
@ -85,7 +96,7 @@ metal_run() {
|
|||
[ -d $LPDIR ] || mkdir -p $LPDIR
|
||||
ofname="$LPDIR/$lpush.out"
|
||||
echo -n "starting $lpush... "
|
||||
./$prefix-$lpush -o $ofname -d $duration -i $iat > $LPDIR/$lpush.log &
|
||||
./$prefix-$lpush -o $ofname -d $duration -i $iat -l $loglvl -c $ctopic > $LPDIR/$lpush.log &
|
||||
echo "done"
|
||||
cd $parent
|
||||
echo "$(date): Waiting for the metal run to finish in $duration"
|
||||
|
@ -95,16 +106,17 @@ metal_run() {
|
|||
|
||||
docker_run() {
|
||||
parent=$(pwd)
|
||||
time="$(\date +"%Y-%m-%d-%Hh%Mm%Ss")"
|
||||
FTDIR="$(pwd)/data/docker/$time"
|
||||
LPDIR="$(pwd)/data/docker/$time"
|
||||
#time="$(\date +"%Y-%m-%d-%Hh%Mm%Ss")"
|
||||
FTDIR="$host_output_dir/data/docker/$ctopic"
|
||||
LPDIR="$host_output_dir/data/docker/$ctopic"
|
||||
#FTDIR="$host_output_dir/data/docker/$time"
|
||||
#LPDIR="$host_output_dir/data/docker/$time"
|
||||
|
||||
[ -d $FTDIR ] || mkdir -p $FTDIR
|
||||
ofname="$FTDIR/$filtr.out"
|
||||
echo "docker run $filtr $ofname"
|
||||
docker rm $prefix-$filtr
|
||||
echo "(docker run --name "$prefix-$filtr" "$prefix-$filtr:alpha" -o /go/bin/out/$filtr.out -d $duration -i $iat > $FTDIR/$filtr.log)"
|
||||
docker run --name "$prefix-$filtr" "$prefix-$filtr:alpha" -o /go/bin/out/$filtr.out -d $duration -i $iat > $FTDIR/$filtr.log &
|
||||
docker run --network=host --name "$prefix-$filtr" "$prefix-$filtr:alpha" -o "$docker_op_dir/$filtr.out" -d $duration -l $loglvl -i $iat > $FTDIR/$filtr.log &
|
||||
echo "$prefix-$filtr is running as $prefix-$filtr"
|
||||
|
||||
sleep $sleep_time
|
||||
|
@ -113,7 +125,7 @@ docker_run() {
|
|||
ofname="$LPDIR/$lpush.out"
|
||||
echo "docker run $lpush $ofname"
|
||||
docker rm $prefix-$lpush
|
||||
docker run --name "$prefix-$lpush" "$prefix-$lpush:alpha" -o /go/bin/out/$lpush.out -d $duration -i $iat > $LPDIR/$lpush.log &
|
||||
docker run --network=host --name "$prefix-$lpush" "$prefix-$lpush:alpha" -o "$docker_op_dir/$lpush.out" -d $duration -i $iat -l $loglvl -c $ctopic> $LPDIR/$lpush.log &
|
||||
echo "$prefix-$filtr is running as $prefix-$lpush"
|
||||
cd $parent
|
||||
|
||||
|
@ -124,16 +136,20 @@ docker_run() {
|
|||
# copy the output files
|
||||
echo "Status code of docker run: ${status_code}"
|
||||
echo "$(date): copying output files from docker"
|
||||
docker cp "$prefix-$filtr:/go/bin/out/$filtr.out" $FTDIR
|
||||
docker cp "$prefix-$lpush:/go/bin/out/$lpush.out" $LPDIR
|
||||
docker logs $prefix-$filtr > "$FTDIR/$filtr-docker.log"
|
||||
docker logs $prefix-$lpush > "$LPDIR/$lpush-docker.log"
|
||||
docker cp "$prefix-$filtr:$docker_op_dir/$filtr.out" $FTDIR
|
||||
docker cp "$prefix-$lpush:$docker_op_dir/$lpush.out" $LPDIR
|
||||
}
|
||||
|
||||
|
||||
kurtosis_run() {
|
||||
parent=$(pwd)
|
||||
time="$(\date +"%Y-%m-%d-%Hh%Mm%Ss")"
|
||||
FTDIR="$(pwd)/data/kurtosis/$time"
|
||||
LPDIR="$(pwd)/data/kurtosis/$time"
|
||||
#time="$(\date +"%Y-%m-%d-%Hh%Mm%Ss")"
|
||||
FTDIR="$host_output_dir/data/kurtosis/$ctopic"
|
||||
LPDIR="$host_output_dir/data/kurtosis/$ctopic"
|
||||
#FTDIR="$host_output_dir/data/kurtosis/$time"
|
||||
#LPDIR="$host_output_dir/data/kurtosis/$time"
|
||||
|
||||
[ -d $FTDIR ] || mkdir -p $FTDIR
|
||||
[ -d $LPDIR ] || mkdir -p $LPDIR
|
||||
|
@ -142,7 +158,17 @@ kurtosis_run() {
|
|||
docker rm $prefix-$filtr
|
||||
docker rm $prefix-$lpush
|
||||
|
||||
kurtosis run --enclave-id $enclave main.star '{"config":"github.com/logos-co/wadoku/waku/config.json"}' > $FTDIR/kurtosis_output.log
|
||||
# generate the config.json
|
||||
echo "{
|
||||
\"output_file\": \"output.out\",
|
||||
\"duration\": \"$duration\",
|
||||
\"iat\": \"$iat\",
|
||||
\"content_topic\": \"$ctopic\",
|
||||
\"log_level\": \"$loglvl\",
|
||||
\"log_file\": \"output.log\"
|
||||
}" > waku/config.json
|
||||
|
||||
kurtosis run --enclave-id $enclave . '{"config":"github.com/logos-co/wadoku/waku/config.json"}' > $FTDIR/kurtosis_output.log
|
||||
sleep $sleep_time
|
||||
filtr_suffix="$(kurtosis enclave inspect $enclave | grep $prefix-$filtr | cut -f 1 -d ' ')"
|
||||
lpush_suffix="$(kurtosis enclave inspect $enclave | grep $prefix-$lpush | cut -f 1 -d ' ')"
|
||||
|
@ -151,13 +177,16 @@ kurtosis_run() {
|
|||
filtr_cid="$enclave--user-service--$filtr_suffix"
|
||||
lpush_cid="$enclave--user-service--$lpush_suffix"
|
||||
echo "created $filtr_cid, $lpush_cid..."
|
||||
echo "$(date): Waiting for the kurtosis run to finish in $duration"
|
||||
echo "$(date): Waiting for the kurtosis ($filtr_cid, $lpush_cid ) run to finish in $duration"
|
||||
status_code="$(docker container wait $filtr_cid $lpush_cid)"
|
||||
echo "Status code of the kurtosis run: ${status_code}"
|
||||
|
||||
|
||||
# copy the output files
|
||||
docker cp "$filtr_cid:/go/bin/out/$filtr.out" $FTDIR
|
||||
docker logs $filtr_cid > $FTDIR/$filtr.log
|
||||
docker cp "$lpush_cid:/go/bin/out/$lpush.out" $LPDIR
|
||||
docker logs $lpush_cid > $LPDIR/$lpush.log
|
||||
kurtosis enclave dump $enclave $FTDIR/kurtosis_dump
|
||||
echo "Status code of the kurtosis run: ${status_code}"
|
||||
cd $parent
|
||||
}
|
||||
|
||||
|
@ -185,6 +214,7 @@ elif [ docker = $1 ]; then
|
|||
elif [ kurtosis = $1 ]; then
|
||||
build_metal
|
||||
build_docker
|
||||
clean # stay under the 4mb limit imposed by gRPC
|
||||
start $1
|
||||
kurtosis_run
|
||||
end $1
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"output_file": "output.out",
|
||||
"duration": "1000s",
|
||||
"duration": "4000s",
|
||||
"iat": "300ms",
|
||||
"mount_src": "/go/bin/out",
|
||||
"mount_target": "/go/bin/out",
|
||||
"content_topic": "2023-01-13-23h49m02s-4000s-300ms",
|
||||
"log_level": "info",
|
||||
"log_file": "output.log"
|
||||
}
|
||||
|
|
|
@ -5,6 +5,8 @@ import (
|
|||
"flag"
|
||||
"fmt"
|
||||
"net"
|
||||
"bytes"
|
||||
"encoding/binary"
|
||||
"os"
|
||||
"time"
|
||||
|
||||
|
@ -29,6 +31,7 @@ const dnsDiscoveryUrl = "enrtree://AOGECG2SPND25EEFMAJ5WF3KSGJNSGV356DSTL2YVLLZW
|
|||
const nameServer = "1.1.1.1" // your local dns provider might be blocking entr
|
||||
|
||||
type Config struct {
|
||||
LogLevel string
|
||||
Ofname string
|
||||
ContentTopic string
|
||||
Iat time.Duration
|
||||
|
@ -42,8 +45,10 @@ func init() {
|
|||
fmt.Println("Populating CLI params...")
|
||||
flag.DurationVar(&conf.Duration, "d", 1000*time.Second,
|
||||
"Specify the duration (1s,2m,4h)")
|
||||
flag.DurationVar(&conf.Iat, "i", 100*time.Millisecond,
|
||||
flag.DurationVar(&conf.Iat, "i", 300*time.Millisecond,
|
||||
"Specify the interarrival time in millisecs")
|
||||
flag.StringVar(&conf.LogLevel, "l", "info",
|
||||
"Specify the log level")
|
||||
flag.StringVar(&conf.Ofname, "o", "lightpush.out",
|
||||
"Specify the output file")
|
||||
flag.StringVar(&conf.ContentTopic, "c", "d608b04e6b6fd7006afdfe916f08b5d",
|
||||
|
@ -55,7 +60,7 @@ func main() {
|
|||
flag.Parse()
|
||||
|
||||
// setup the log
|
||||
lvl, err := logging.LevelFromString("info")
|
||||
lvl, err := logging.LevelFromString(conf.LogLevel)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
@ -73,8 +78,9 @@ func main() {
|
|||
panic(err)
|
||||
}
|
||||
|
||||
log.Info("CONFIG : ", conf)
|
||||
// find the list of full node fleet peers
|
||||
fmt.Printf("attempting DNS discovery with %s\n", dnsDiscoveryUrl)
|
||||
log.Info("attempting DNS discovery with: ", dnsDiscoveryUrl)
|
||||
nodes, err := dnsdisc.RetrieveNodes(ctx, dnsDiscoveryUrl, dnsdisc.WithNameserver(nameServer))
|
||||
if err != nil {
|
||||
panic(err.Error())
|
||||
|
@ -85,26 +91,27 @@ func main() {
|
|||
for _, n := range nodes {
|
||||
nodeList = append(nodeList, n.Addresses...)
|
||||
}
|
||||
fmt.Printf("Discovered and connecting to %v \n", nodeList[0])
|
||||
log.Info("Discovered and connecting to: ", nodeList[0])
|
||||
peerID, err := nodeList[0].ValueForProtocol(multiaddr.P_P2P)
|
||||
if err != nil {
|
||||
fmt.Printf("could not get peerID: %s \n", err)
|
||||
log.Error("could not get peerID: ", err)
|
||||
panic(err)
|
||||
}
|
||||
err = lightNode.DialPeerWithMultiAddress(ctx, nodeList[0])
|
||||
if err != nil {
|
||||
fmt.Printf("could not connect to %s: %s \n", peerID, err)
|
||||
log.Error("could not connect to ", peerID, err)
|
||||
panic(err)
|
||||
}
|
||||
|
||||
fmt.Println("STARTING THE LIGHTNODE ", conf.ContentTopic)
|
||||
log.Info("STARTING THE FILTER NODE ", conf.ContentTopic)
|
||||
// start the light node
|
||||
err = lightNode.Start()
|
||||
if err != nil {
|
||||
log.Error("COULD NOT START THE FILTER NODE ", conf.ContentTopic)
|
||||
panic(err)
|
||||
}
|
||||
|
||||
fmt.Println("SUBSCRIBING TO THE TOPIC ", conf.ContentTopic)
|
||||
log.Info("SUBSCRIBING TO THE TOPIC ", conf.ContentTopic)
|
||||
// Subscribe to our ContentTopic and send a FilterRequest
|
||||
cf := filter.ContentFilter{
|
||||
Topic: pubSubTopic.String(),
|
||||
|
@ -119,6 +126,7 @@ func main() {
|
|||
go func() {
|
||||
f, err := os.OpenFile(conf.Ofname, os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0600)
|
||||
if err != nil {
|
||||
log.Error("Could not open file: ", err)
|
||||
panic(err)
|
||||
}
|
||||
defer f.Close()
|
||||
|
@ -126,7 +134,17 @@ func main() {
|
|||
for env := range theFilter.Chan {
|
||||
msg := env.Message()
|
||||
log.Info("Light node received msg, ", string(msg.Payload))
|
||||
str := fmt.Sprintf("Received msg, @", string(msg.ContentTopic), "@", msg.Timestamp, "@", utils.GetUnixEpochFrom(lightNode.Timesource().Now()))
|
||||
|
||||
rbuf := bytes.NewBuffer(msg.Payload)
|
||||
var r32 int32 //:= make([]int64, (len(msg.Payload)+7)/8)
|
||||
err = binary.Read(rbuf, binary.LittleEndian, &r32)
|
||||
if err != nil {
|
||||
log.Error("binary.Read failed:", err)
|
||||
panic(err)
|
||||
}
|
||||
|
||||
msg_delay := time.Since(time.Unix(0, msg.Timestamp))
|
||||
str := fmt.Sprintf("Received msg, @", r32, "@", string(msg.ContentTopic), "@", msg.Timestamp, "@", utils.GetUnixEpochFrom(lightNode.Timesource().Now()), "@", msg_delay.Microseconds(), "@", msg_delay.Milliseconds() )
|
||||
log.Info(str)
|
||||
//"Received msg, @", string(msg.ContentTopic), "@", msg.Timestamp, "@", utils.GetUnixEpochFrom(lightNode.Timesource().Now()) )
|
||||
if _, err = f.WriteString(str + "\n"); err != nil {
|
||||
|
|
|
@ -5,6 +5,8 @@ import (
|
|||
"flag"
|
||||
"fmt"
|
||||
"net"
|
||||
"bytes"
|
||||
"encoding/binary"
|
||||
"os"
|
||||
"time"
|
||||
|
||||
|
@ -28,7 +30,10 @@ var log = logging.Logger("lightpush")
|
|||
const NameServer = "1.1.1.1" // your local dns provider might be blocking entr
|
||||
const DnsDiscoveryUrl = "enrtree://AOGECG2SPND25EEFMAJ5WF3KSGJNSGV356DSTL2YVLLZWIV6SAYBM@prod.waku.nodes.status.im"
|
||||
|
||||
var seqNumber int32 = 0
|
||||
|
||||
type Config struct {
|
||||
LogLevel string
|
||||
Ofname string
|
||||
ContentTopic string
|
||||
Iat time.Duration
|
||||
|
@ -44,6 +49,8 @@ func init() {
|
|||
"Specify the duration (1s,2m,4h)")
|
||||
flag.DurationVar(&conf.Iat, "i", 100*time.Millisecond,
|
||||
"Specify the interarrival time in millisecs")
|
||||
flag.StringVar(&conf.LogLevel, "l", "info",
|
||||
"Specify the log level")
|
||||
flag.StringVar(&conf.Ofname, "o", "lightpush.out",
|
||||
"Specify the output file")
|
||||
flag.StringVar(&conf.ContentTopic, "c", "d608b04e6b6fd7006afdfe916f08b5d",
|
||||
|
@ -55,7 +62,7 @@ func main() {
|
|||
flag.Parse()
|
||||
|
||||
// setup the log
|
||||
lvl, err := logging.LevelFromString("info")
|
||||
lvl, err := logging.LevelFromString(conf.LogLevel)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
@ -74,8 +81,9 @@ func main() {
|
|||
panic(err)
|
||||
}
|
||||
|
||||
log.Info("config: ", conf)
|
||||
// find the list of full node fleet peers
|
||||
fmt.Printf("attempting DNS discovery with %s\n", DnsDiscoveryUrl)
|
||||
log.Info("attempting DNS discovery with: ", DnsDiscoveryUrl)
|
||||
nodes, err := dnsdisc.RetrieveNodes(ctx, DnsDiscoveryUrl, dnsdisc.WithNameserver(NameServer))
|
||||
if err != nil {
|
||||
panic(err.Error())
|
||||
|
@ -86,23 +94,24 @@ func main() {
|
|||
for _, n := range nodes {
|
||||
nodeList = append(nodeList, n.Addresses...)
|
||||
}
|
||||
fmt.Printf("Discovered and connecting to %v \n", nodeList[0])
|
||||
log.Info("Discovered and connecting to: ", nodeList[0])
|
||||
peerID, err := nodeList[0].ValueForProtocol(multiaddr.P_P2P)
|
||||
if err != nil {
|
||||
fmt.Printf("could not connect to %s: %s \n", peerID, err)
|
||||
log.Error("could not get peerID: ", err)
|
||||
panic(err)
|
||||
}
|
||||
|
||||
err = lightNode.DialPeerWithMultiAddress(ctx, nodeList[0])
|
||||
if err != nil {
|
||||
fmt.Printf("could not connect to %s: %s \n", peerID, err)
|
||||
log.Error("could not connect to ", peerID, err)
|
||||
panic(err)
|
||||
}
|
||||
|
||||
fmt.Println("STARTING THE LIGHTNODE ", conf.ContentTopic)
|
||||
log.Info("STARTING THE LIGHTPUSH NODE ", conf.ContentTopic)
|
||||
// start the light node
|
||||
err = lightNode.Start()
|
||||
if err != nil {
|
||||
log.Error("COULD NOT START THE LIGHTPUSH ", peerID, err)
|
||||
panic(err)
|
||||
}
|
||||
|
||||
|
@ -115,23 +124,33 @@ func main() {
|
|||
}
|
||||
|
||||
func writeLoop(ctx context.Context, conf *Config, wakuNode *node.WakuNode) {
|
||||
fmt.Println("STARTING THE WRITELOOP ", conf.ContentTopic)
|
||||
log.Info("STARTING THE WRITELOOP ", conf.ContentTopic)
|
||||
|
||||
f, err := os.OpenFile(conf.Ofname, os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0600)
|
||||
if err != nil {
|
||||
log.Error("Could not open file: ", err)
|
||||
panic(err)
|
||||
}
|
||||
defer f.Close()
|
||||
|
||||
for {
|
||||
time.Sleep(conf.Iat)
|
||||
seqNumber++
|
||||
|
||||
// build the message
|
||||
// build the message & seq number
|
||||
p := new(payload.Payload)
|
||||
wbuf := new(bytes.Buffer)
|
||||
err := binary.Write(wbuf, binary.LittleEndian, seqNumber)
|
||||
if err != nil {
|
||||
log.Error("binary.Write failed:", err)
|
||||
panic(err)
|
||||
}
|
||||
p.Data = wbuf.Bytes()
|
||||
var version uint32 = 0
|
||||
payload, err := p.Encode(version)
|
||||
if err != nil {
|
||||
log.Error("Could not Encode: ", err)
|
||||
panic(err)
|
||||
}
|
||||
msg := &pb.WakuMessage{
|
||||
Payload: payload,
|
||||
|
@ -151,6 +170,6 @@ func writeLoop(ctx context.Context, conf *Config, wakuNode *node.WakuNode) {
|
|||
if _, err = f.WriteString(str); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
fmt.Println("PUBLISHED/PUSHED...", msg)
|
||||
log.Info("PUBLISHED/PUSHED... ", seqNumber, msg)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue