I created a Ethereum smart contract with remix IDE and metamask for the ethereum ropsten network. The smart contract is created and transactions are made. But the events does not log any Events.
The code for generating smart contract is shown below.
pragma solidity ^0.5.1;
contract SimpleStorage{
uint storeddata;
function set(uint x) public{
storeddata = x;
}
function get() public view returns(uint){
return storeddata;
}
}
The smart contract address obtained is
0xA41B2508Ee53cE00E07405Bc15A190F8af5dE0a4
What could be the reason for the events not getting logged.